From c0431474c9a08ab7440cfbf4cd465963c45cd3f3 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Thu, 10 Sep 2020 17:50:06 -0400 Subject: [PATCH] Detect warning ahead of errors --- tests/suites/_mail-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/_mail-functions.sh b/tests/suites/_mail-functions.sh index cc02ae1d..08c77a21 100644 --- a/tests/suites/_mail-functions.sh +++ b/tests/suites/_mail-functions.sh @@ -106,11 +106,11 @@ detect_syslog_error() { /status=(bounced|deferred|undeliverable)/ { exit 1 } /warning:/ && /spamhaus\.org: RBL lookup error:/ { exit 2 } !/postfix\/qmgr/ && /warning:/ { exit 1 } +/named\[\d+\]:.* receive error: .*: connection reset/ { exit 2 } /(fatal|reject|error):/ { exit 1 } /Error in / { exit 1 } /Exception on / { exit 1 } /named\[\d+\]:.* verify failed/ { exit 1 } -/named\[\d+\]:.* receive error: .*: connection reset/ { exit 2 } ' \ >>$TEST_OF 2>&1 <<< "$line" if [ $? -eq 1 ]; then