We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0286619 commit 0a8e84bCopy full SHA for 0a8e84b
scripts/common-run.sh
@@ -258,7 +258,7 @@ postfix_disable_utf8() {
258
if [[ -f /etc/alpine-release ]] && [[ "${smtputf8_enable}" == "yes" ]]; then
259
debug "Running on Alpine. Setting ${emphasis}smtputf8_enable${reset}=${emphasis}no${reset}, as Alpine does not have proper libraries to handle UTF-8"
260
do_postconf -e smtputf8_enable=no
261
- elif [[ "${smtputf8_enable}" == "no" ]]; then
+ elif [[ ! -f /etc/alpine-release ]] && [[ "${smtputf8_enable}" == "no" ]]; then
262
debug "Running on non-Alpine system. Setting ${emphasis}smtputf8_enable${reset}=${emphasis}yes${reset}."
263
do_postconf -e smtputf8_enable=yes
264
fi
0 commit comments