diff --git a/setup/system.sh b/setup/system.sh index 370b7646..13f2307b 100755 --- a/setup/system.sh +++ b/setup/system.sh @@ -370,3 +370,13 @@ cp -f conf/fail2ban/filter.d/* /etc/fail2ban/filter.d/ # scripts will ensure the files exist and then fail2ban is given another # restart at the very end of setup. restart_service fail2ban + +# ### Mail-related logs should be recorded in mail.log only - stop +# ### duplicate logging to syslog + +cat >/etc/rsyslog.d/20-mailinabox.conf <>$TEST_OF 2>&1 <<< "$line" r=$? @@ -281,8 +285,8 @@ check_logs() { fi if array_contains mail ${types[@]}; then - detect_dovecot_log_error && $assert && - test_failure "detected errors in dovecot log" + detect_mail_log_error && $assert && + test_failure "detected errors in mail log" fi } @@ -293,8 +297,8 @@ assert_check_logs() { grep_postfix_log() { local msg="$1" local count - let count="$SYS_LOG_LINECOUNT + 1" - tail --lines=+$count /var/log/syslog 2>>$TEST_OF | grep -iF "$msg" >/dev/null 2>>$TEST_OF + let count="$MAIL_LOG_LINECOUNT + 1" + tail --lines=+$count /var/log/mail.log 2>>$TEST_OF | grep -iF "$msg" >/dev/null 2>>$TEST_OF return $? } diff --git a/tests/suites/mail-access.sh b/tests/suites/mail-access.sh index 702ddf1e..a10d831d 100644 --- a/tests/suites/mail-access.sh +++ b/tests/suites/mail-access.sh @@ -328,6 +328,7 @@ EOF # ok check_logs else + test_failure "Expected postfix/lmtp to report 'User doesn't exist'" assert_check_logs fi