mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
flush logs on other log scanning functions
This commit is contained in:
parent
4531c90434
commit
c9eb90800b
@ -358,13 +358,7 @@ EOF
|
|||||||
return ${x[1]}
|
return ${x[1]}
|
||||||
}
|
}
|
||||||
|
|
||||||
check_logs() {
|
flush_logs() {
|
||||||
local assert="${1:-false}"
|
|
||||||
[ "$1" == "true" -o "$1" == "false" ] && shift
|
|
||||||
local types=($@)
|
|
||||||
[ ${#types[@]} -eq 0 ] && types=(syslog slapd mail)
|
|
||||||
|
|
||||||
# flush records
|
|
||||||
local pid
|
local pid
|
||||||
if [ -e /var/run/rsyslogd.pid ]; then
|
if [ -e /var/run/rsyslogd.pid ]; then
|
||||||
# the pid file won't exist if rsyslogd was started with -iNONE
|
# the pid file won't exist if rsyslogd was started with -iNONE
|
||||||
@ -373,12 +367,22 @@ check_logs() {
|
|||||||
pid=$(/usr/bin/pidof rsyslogd)
|
pid=$(/usr/bin/pidof rsyslogd)
|
||||||
fi
|
fi
|
||||||
if [ "$GITHUB_ACTIONS" = "true" ]; then
|
if [ "$GITHUB_ACTIONS" = "true" ]; then
|
||||||
systemctl restart rsyslogd >>$TEST_OF 2>&1
|
systemctl restart rsyslog >>$TEST_OF 2>&1
|
||||||
sleep 5
|
sleep 5
|
||||||
elif [ ! -z "$pid" ]; then
|
elif [ ! -z "$pid" ]; then
|
||||||
kill -HUP $pid >>$TEST_OF 2>&1
|
kill -HUP $pid >>$TEST_OF 2>&1
|
||||||
sleep 2
|
sleep 2
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
check_logs() {
|
||||||
|
local assert="${1:-false}"
|
||||||
|
[ "$1" == "true" -o "$1" == "false" ] && shift
|
||||||
|
local types=($@)
|
||||||
|
[ ${#types[@]} -eq 0 ] && types=(syslog slapd mail)
|
||||||
|
|
||||||
|
# flush records
|
||||||
|
flush_logs
|
||||||
|
|
||||||
if array_contains syslog ${types[@]}; then
|
if array_contains syslog ${types[@]}; then
|
||||||
detect_syslog_error && $assert &&
|
detect_syslog_error && $assert &&
|
||||||
@ -415,6 +419,7 @@ grep_postfix_log() {
|
|||||||
local msg="$1"
|
local msg="$1"
|
||||||
local count
|
local count
|
||||||
let count="$MAIL_LOG_LINECOUNT + 1"
|
let count="$MAIL_LOG_LINECOUNT + 1"
|
||||||
|
flush_logs
|
||||||
tail --lines=+$count /var/log/mail.log 2>>$TEST_OF | grep -iF "$msg" >/dev/null 2>>$TEST_OF
|
tail --lines=+$count /var/log/mail.log 2>>$TEST_OF | grep -iF "$msg" >/dev/null 2>>$TEST_OF
|
||||||
return $?
|
return $?
|
||||||
}
|
}
|
||||||
|
@ -307,7 +307,7 @@ test_mailbox_pipe() {
|
|||||||
local outfile="/tmp/pipedrop.$$.out"
|
local outfile="/tmp/pipedrop.$$.out"
|
||||||
cat 2>>$TEST_OF >$cmd <<EOF
|
cat 2>>$TEST_OF >$cmd <<EOF
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
cat > $outfile
|
echo "boo" > $outfile
|
||||||
EOF
|
EOF
|
||||||
chmod 755 $cmd
|
chmod 755 $cmd
|
||||||
rm -f $outfile
|
rm -f $outfile
|
||||||
@ -332,7 +332,6 @@ EOF
|
|||||||
assert_python_failure $code "$output" SMTPAuthenticationError
|
assert_python_failure $code "$output" SMTPAuthenticationError
|
||||||
check_logs
|
check_logs
|
||||||
else
|
else
|
||||||
sleep 5
|
|
||||||
if grep_postfix_log "User doesn't exist: |$cmd@"; then
|
if grep_postfix_log "User doesn't exist: |$cmd@"; then
|
||||||
# ok
|
# ok
|
||||||
check_logs
|
check_logs
|
||||||
|
Loading…
Reference in New Issue
Block a user