2022-10-17 08:40:09 +00:00
|
|
|
#!/bin/bash
|
2018-03-18 18:52:28 +00:00
|
|
|
|
2022-02-21 10:56:57 +00:00
|
|
|
# shellcheck source=../scripts/helpers/index.sh
|
|
|
|
source /usr/local/bin/helpers/index.sh
|
2018-03-18 18:52:28 +00:00
|
|
|
|
2020-10-21 16:16:32 +00:00
|
|
|
HOSTNAME=${1}
|
|
|
|
RECIPIENT=${2}
|
|
|
|
SENDER=${3}
|
2018-03-18 18:52:28 +00:00
|
|
|
|
2022-03-26 08:30:09 +00:00
|
|
|
[[ -x /usr/sbin/pflogsumm ]] || _exit_with_error "'/usr/sbin/pflogsumm' not found or executable"
|
2020-10-21 16:16:32 +00:00
|
|
|
|
|
|
|
# The case that the mail.log.1 file isn't readable shouldn't
|
|
|
|
# actually be possible with logrotate not rotating empty files..
|
|
|
|
# But you never know!
|
2023-05-24 07:06:59 +00:00
|
|
|
if [[ -r "/var/log/mail/mail.log.1" ]]; then
|
2018-04-04 16:45:50 +00:00
|
|
|
BODY=$(/usr/sbin/pflogsumm /var/log/mail/mail.log.1 --problems-first)
|
|
|
|
else
|
|
|
|
BODY="Error: Mail log not readable or not found: /var/log/mail/mail.log.1
|
|
|
|
|
|
|
|
In case of mail inactivity since the last report, this might be considered a nuisance warning.
|
|
|
|
|
|
|
|
Yours faithfully,
|
2020-10-21 16:16:32 +00:00
|
|
|
The ${HOSTNAME} Mailserver"
|
2018-04-04 16:45:50 +00:00
|
|
|
fi
|
2018-03-30 08:24:40 +00:00
|
|
|
|
|
|
|
sendmail -t <<EOF
|
2020-10-21 16:16:32 +00:00
|
|
|
From: ${SENDER}
|
|
|
|
To: ${RECIPIENT}
|
|
|
|
Subject: Postfix Summary for ${HOSTNAME}
|
2018-03-30 08:24:40 +00:00
|
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
|
2020-10-21 16:16:32 +00:00
|
|
|
${BODY}
|
2018-03-30 08:24:40 +00:00
|
|
|
EOF
|