From: Steve Campbell Date: Mon, 14 Jan 2013 23:00:11 +0000 (+0000) Subject: Update eximstats to watch out for senders sending 'HELO [IpAddr]' X-Git-Tag: exim-4_81_RC1~3^2 X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=commitdiff_plain;h=514ee161db1166e94b9ee889953f2e9774cee973 Update eximstats to watch out for senders sending 'HELO [IpAddr]' --- diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 924b0b8e4..3a1e39c45 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -154,6 +154,8 @@ PP/15 Define SIOCGIFCONF_GIVES_ADDR for GNU Hurd. Bug detection, analysis and fix by Samuel Thibault. Bugzilla 1331, Debian bug #698092. +SC/01 Update eximstats to watch out for senders sending 'HELO [IpAddr]' + Exim version 4.80.1 ------------------- diff --git a/src/src/eximstats.src b/src/src/eximstats.src index 4edb7e54b..56721ed62 100644 --- a/src/src/eximstats.src +++ b/src/src/eximstats.src @@ -284,6 +284,8 @@ # 2007-09-20 V1.60 Heiko Schlittermann # Fix for misinterpreted log lines # +# 2013-01-14 V1.61 Steve Campbell +# Watch out for senders sending "HELO [IpAddr]" # # # For documentation on the logfile format, see @@ -582,7 +584,7 @@ use vars qw($WEEK $DAY $HOUR $MINUTE); @days_per_month = (0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334); $gig = 1024 * 1024 * 1024; -$VERSION = '1.60'; +$VERSION = '1.61'; # How much space do we allow for the Hosts/Domains/Emails/Edomains column headers? $COLUMN_WIDTHS = 8; @@ -1924,7 +1926,8 @@ sub generate_parser { # "H=Host (UnverifiedHost) [IpAddr]" or "H=(UnverifiedHost) [IpAddr]". # We do 2 separate matches to keep the matches simple and fast. # Host is local unless otherwise specified. - $ip = (/\\bH=.*?(\\[[^]]+\\])/) ? $1 + # Watch out for "H=([IpAddr])" in case they send "[IpAddr]" as their HELO! + $ip = (/\\bH=(?:|.*? )(\\[[^]]+\\])/) ? $1 # 2008-03-31 06:25:22 Connection from [213.246.33.217]:39456 refused: too many connections from that IP address // .hs : (/Connection from (\[\S+\])/) ? $1 # 2008-03-31 06:52:40 SMTP call from mail.cacoshrf.com (ccsd02.ccsd.local) [69.24.118.229]:4511 dropped: too many nonmail commands (last was "RSET") // .hs