1
0
mirror of https://github.com/docker-mailserver/docker-mailserver.git synced 2025-08-10 23:12:02 +02:00

Merge pull request #1658 from casperklein/patch-4

Quotes removed to have a uniform style
This commit is contained in:
Georg Lauterbach
2020-10-18 13:57:06 +02:00
committed by GitHub

View File

@@ -397,7 +397,7 @@ 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" ]]
if [[ ${REPORT_RECIPIENT} == "0" ]]
then
DEFAULT_VARS["PFLOGSUMM_TRIGGER"]="${PFLOGSUMM_TRIGGER:="none"}"
else
@@ -405,7 +405,7 @@ function _setup_default_vars
fi
# expand address to simplify the rest of the script
if [[ "${REPORT_RECIPIENT}" == "0" ]] || [[ "${REPORT_RECIPIENT}" == "1" ]]
if [[ ${REPORT_RECIPIENT} == "0" ]] || [[ ${REPORT_RECIPIENT} == "1" ]]
then
REPORT_RECIPIENT="${POSTMASTER_ADDRESS}"
DEFAULT_VARS["REPORT_RECIPIENT"]="${REPORT_RECIPIENT}"
@@ -1339,7 +1339,7 @@ function _setup_postfix_override_configuration
then
while read -r line
do
if [[ "${line}" =~ ^[0-9a-z] ]]
if [[ ${line} =~ ^[0-9a-z] ]]
then
postconf -P "${line}"
fi