You've already forked docker-mailserver
mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-16 07:24:44 +02:00
Set REPORT_RECIPIENT to postmaster when 0
This commit is contained in:
@ -451,14 +451,14 @@ function _setup_default_vars() {
|
||||
|
||||
# set PFLOGSUMM_TRIGGER here for backwards compatibility
|
||||
# when REPORT_RECIPIENT is on the old method should be used
|
||||
if [ "$REPORT_RECIPIENT" != "0" ]; then
|
||||
DEFAULT_VARS["PFLOGSUMM_TRIGGER"]="${PFLOGSUMM_TRIGGER:="logrotate"}"
|
||||
else
|
||||
if [ "$REPORT_RECIPIENT" == "0" ]; then
|
||||
DEFAULT_VARS["PFLOGSUMM_TRIGGER"]="${PFLOGSUMM_TRIGGER:="none"}"
|
||||
else
|
||||
DEFAULT_VARS["PFLOGSUMM_TRIGGER"]="${PFLOGSUMM_TRIGGER:="logrotate"}"
|
||||
fi
|
||||
|
||||
# Expand address to simplify the rest of the script
|
||||
if [ "$REPORT_RECIPIENT" == "1" ]; then
|
||||
if [ "$REPORT_RECIPIENT" == "0" ] || [ "$REPORT_RECIPIENT" == "1" ]; then
|
||||
REPORT_RECIPIENT="$POSTMASTER_ADDRESS"
|
||||
DEFAULT_VARS["REPORT_RECIPIENT"]="${REPORT_RECIPIENT}"
|
||||
fi
|
||||
|
Reference in New Issue
Block a user