]> gitweb.michael.orlitzky.com - amavis-logwatch.git/commitdiff
Ignore "will bind to" lines in addition to "bind to" lines.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 28 Dec 2018 14:40:36 +0000 (09:40 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 28 Dec 2018 14:56:27 +0000 (09:56 -0500)
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.

amavis-logwatch

index 6d06793fd721abd5ffded56ce9a1a869ba92f645..250a6baa4658307f9b2b200990737237b4ce88a7 100644 (file)
@@ -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: /;