From 3774d750ade89b6fe0457f57556acdd70dda936c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 15 Jun 2022 07:53:12 -0400 Subject: [PATCH] postfix-logwatch: ignore "breaking line > 998 bytes with ..." Newer versions of postfix log e.g. the informational, Jun 15 02:28:30 mx1 postfix/smtp[18842]: 4LNFk643CfzMlbp: breaking line > 998 bytes with SPACE This commit adds it to the ignore list, so it won't be repeatedly mentioned as an "umatched line." --- postfix-logwatch | 1 + 1 file changed, 1 insertion(+) diff --git a/postfix-logwatch b/postfix-logwatch index 6cff86d..2636344 100644 --- a/postfix-logwatch +++ b/postfix-logwatch @@ -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 /; -- 2.43.2