From: Michael Orlitzky Date: Fri, 28 Dec 2018 14:40:36 +0000 (-0500) Subject: Ignore "will bind to" lines in addition to "bind to" lines. X-Git-Tag: 1.51.04~12 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=amavis-logwatch.git;a=commitdiff_plain;h=e53948a6909e98b63c63c97749c7d0eb534fa274 Ignore "will bind to" lines in addition to "bind to" lines. In amavisd-new-2.11.0-rc1, the informational "bind to..." messages were changed to say "will bind to..." instead. This commit updates the @ignore_list_final regular expression to match both forms. --- diff --git a/amavis-logwatch b/amavis-logwatch index 6d06793..250a6ba 100644 --- a/amavis-logwatch +++ b/amavis-logwatch @@ -2029,7 +2029,7 @@ sub create_ignore_list() { push @ignore_list_final, qr/^address modified \(/; push @ignore_list_final, qr/^Request: AM\.PDP /; push @ignore_list_final, qr/^DSPAM result: /; - push @ignore_list_final, qr/^bind to \//; + push @ignore_list_final, qr/^(will )?bind to \//; push @ignore_list_final, qr/^ZMQ enabled: /; push @ignore_list_final, qr/^Inserting header field: X-Amavis-Hold: /;