From 9c10e24a0bdc5782a200eb6d3fa9ebae54f43435 Mon Sep 17 00:00:00 2001 From: myve Date: Fri, 10 Jan 2025 04:05:22 +0000 Subject: [PATCH] Update build/run/docker-entrypoint/init.d/30-postfix.sh --- build/run/docker-entrypoint/init.d/30-postfix.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/run/docker-entrypoint/init.d/30-postfix.sh b/build/run/docker-entrypoint/init.d/30-postfix.sh index 208e08f..3ef1997 100755 --- a/build/run/docker-entrypoint/init.d/30-postfix.sh +++ b/build/run/docker-entrypoint/init.d/30-postfix.sh @@ -37,7 +37,7 @@ echo | tee /etc/postfix/{helo_access,rbl_override} >/dev/null for domain in ${addmx[@]} do echo "${domain} OK" | tee -a /etc/postfix/helo_access >/dev/null - echo "/${domain}/ OK" | tee -a /etc/postfix/rbl_override >/dev/null + echo "/${domain}/ OK Primary and backup mail servers" | tee -a /etc/postfix/rbl_override >/dev/null done if [ ${MYVEMAIL_WHITELIST} ] @@ -46,7 +46,7 @@ then addwhitelist+=(${MYVEMAIL_WHITELIST//,/ }) for whitelist in ${addwhitelist[@]} do - echo "/${whitelist}/ OK" | tee -a /etc/postfix/rbl_override >/dev/null + echo "/${whitelist}/ OK Whitelisted address" | tee -a /etc/postfix/rbl_override >/dev/null done fi @@ -57,7 +57,7 @@ then addblacklist+=(${MYVEMAIL_BLACKLIST//,/ }) for blacklist in ${addblacklist[@]} do - echo "/${blacklist}/ REJECT" | tee -a /etc/postfix/rbl_override >/dev/null + echo "/${blacklist}/ REJECT Blacklisted address" | tee -a /etc/postfix/rbl_override >/dev/null done fi