mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-12 10:45:14 +02:00
[Watchdog] Fix broken mail with more than one rcpt in some cases
This commit is contained in:
parent
9c5eda13aa
commit
0d7681d0a5
@ -58,6 +58,15 @@ function mail_error() {
|
|||||||
[[ -z ${1} ]] && return 1
|
[[ -z ${1} ]] && return 1
|
||||||
[[ -z ${2} ]] && BODY="Service was restarted on $(date), please check your mailcow installation." || BODY="$(date) - ${2}"
|
[[ -z ${2} ]] && BODY="Service was restarted on $(date), please check your mailcow installation." || BODY="$(date) - ${2}"
|
||||||
WATCHDOG_NOTIFY_EMAIL=$(echo "${WATCHDOG_NOTIFY_EMAIL}" | sed 's/"//;s|"$||')
|
WATCHDOG_NOTIFY_EMAIL=$(echo "${WATCHDOG_NOTIFY_EMAIL}" | sed 's/"//;s|"$||')
|
||||||
|
# Some exceptions for subject and body formats
|
||||||
|
if [[ ${1} == "watchdog-mailcow" ]]; then
|
||||||
|
SUBJECT="Watchdog started"
|
||||||
|
elif [[ ${1} == "fail2ban" ]]; then
|
||||||
|
SUBJECT="${BODY}"
|
||||||
|
BODY="Please see netfilter-mailcow for more details and triggered rules."
|
||||||
|
else
|
||||||
|
SUBJECT="Watchdog: ${1} triggered an event"
|
||||||
|
fi
|
||||||
IFS=',' read -r -a MAIL_RCPTS <<< "${WATCHDOG_NOTIFY_EMAIL}"
|
IFS=',' read -r -a MAIL_RCPTS <<< "${WATCHDOG_NOTIFY_EMAIL}"
|
||||||
for rcpt in "${MAIL_RCPTS[@]}"; do
|
for rcpt in "${MAIL_RCPTS[@]}"; do
|
||||||
RCPT_DOMAIN=
|
RCPT_DOMAIN=
|
||||||
|
Loading…
Reference in New Issue
Block a user