]> gitweb.michael.orlitzky.com - postfix-logwatch.git/commitdiff
postfix-logwatch: ignore "breaking line > 998 bytes with ..."
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 15 Jun 2022 11:53:12 +0000 (07:53 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 15 Jun 2022 11:58:54 +0000 (07:58 -0400)
Newer versions of postfix log e.g. the informational,

  Jun 15 02:28:30 mx1 postfix/smtp[18842]: 4LNFk643CfzMlbp: breaking
  line > 998 bytes with <CR><LF>SPACE

This commit adds it to the ignore list, so it won't be repeatedly
mentioned as an "umatched line."

postfix-logwatch

index 6cff86dcb480ca8468553193b321328491f2822f..26363448fcf9451224adc864882b61a7717f9b4f 100644 (file)
@@ -3902,6 +3902,7 @@ sub create_ignore_list() {
    push @ignore_list, qr/^reject_invalid_hostname: /;
    push @ignore_list, qr/^cfg_get_/;
    push @ignore_list, qr/^sacl_check: /;
+   push @ignore_list, qr/^breaking line > 998 bytes with /;
 
    # non-anchored
    #push @ignore_list, qr/: Greylisted for /;