From bd4c97599a4d321677cdf677275022f6660930f9 Mon Sep 17 00:00:00 2001 From: Nigel Metheringham Date: Sun, 6 Feb 2011 19:20:06 +0000 Subject: [PATCH] Fix exiqgrep issue where malformed lines not parsed Fixes bug 943 Lightly tested, but not with report error condition, would like reporter to check this fix on their system. --- doc/doc-txt/ChangeLog | 3 +++ src/src/exiqgrep.src | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 083870af6..135213b2d 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -35,6 +35,9 @@ NM/03 Allow underscore in dnslist lookups PP/04 Bugzilla 230: Support TLS-enabled LDAP (in addition to ldaps). Code patches from Adam Ciarcinski of NetBSD. +NM/04 Fixed exiqgrep to cope with mailq missing size issue + Fixes bug 943. + Exim version 4.74 ----------------- diff --git a/src/src/exiqgrep.src b/src/src/exiqgrep.src index 9abaab787..fd8b5a6c3 100644 --- a/src/src/exiqgrep.src +++ b/src/src/exiqgrep.src @@ -88,7 +88,7 @@ sub collect() { chomp(); my $line = $_; #Should be 1st line of record, if not error. - if ($line =~ /^\s*(\w+)\s+(\S+)\s+(\w{6}-\w{6}-\w{2})\s+(<.*?>)/) { + if ($line =~ /^\s*(\w+)\s+((?:\d+(?:\.\d+)?[A-Z])?)\s*(\w{6}-\w{6}-\w{2})\s+(<.*?>)/) { my $msg = $3; $id{$msg}{age} = $1; $id{$msg}{size} = $2; -- 2.30.2