add smtp_tls_wrappermode and smtp_tls_security_level.
You need both parameters when you send emails with TLS(465).
This commit is contained in:
parent
4398bb1053
commit
8cc737c70a
1 changed files with 5 additions and 0 deletions
5
run.sh
5
run.sh
|
@ -38,6 +38,11 @@ add_config_value "smtp_sasl_password_maps" "hash:/etc/postfix/sasl_passwd"
|
|||
add_config_value "smtp_sasl_security_options" "noanonymous"
|
||||
add_config_value "always_add_missing_headers" "${ALWAYS_ADD_MISSING_HEADERS:-no}"
|
||||
|
||||
if [ "${SMTP_PORT}" = "465" ]; then
|
||||
add_config_value "smtp_tls_wrappermode" "yes"
|
||||
add_config_value "smtp_tls_security_level" "encrypt"
|
||||
fi
|
||||
|
||||
# Create sasl_passwd file with auth credentials
|
||||
if [ ! -f /etc/postfix/sasl_passwd ]; then
|
||||
grep -q "${SMTP_SERVER}" /etc/postfix/sasl_passwd > /dev/null 2>&1
|
||||
|
|
Loading…
Reference in a new issue