Fix issue #45: Update alpine image to v3.13, had to remove cyrus-sasl-plain

package as is not present on that version and switch sasl map from
hash to lmdb.
This commit is contained in:
Juan Luis Baptiste
2021-02-03 15:26:32 -05:00
parent b4293f81be
commit 1976cf8400
2 changed files with 3 additions and 3 deletions

2
run.sh
View File

@@ -34,7 +34,7 @@ add_config_value "myorigin" '$mydomain'
add_config_value "relayhost" "[${SMTP_SERVER}]:${SMTP_PORT}"
add_config_value "smtp_use_tls" "yes"
add_config_value "smtp_sasl_auth_enable" "yes"
add_config_value "smtp_sasl_password_maps" "hash:/etc/postfix/sasl_passwd"
add_config_value "smtp_sasl_password_maps" "lmdb:/etc/postfix/sasl_passwd"
add_config_value "smtp_sasl_security_options" "noanonymous"
add_config_value "always_add_missing_headers" "${ALWAYS_ADD_MISSING_HEADERS:-no}"