You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Description": "The next-hop destination of non-local mail"
18
18
},
19
+
{
20
+
"Name": "sasl_username",
21
+
"Description": "username for sasl authentication",
22
+
"Optional": true
23
+
},
24
+
{
25
+
"Name": "sasl_password",
26
+
"Description": "password for sasl authentication, if the mail relay server needs an md5 encrypted password pass the encrypted password in here otherwise plain",
27
+
"Optional": true,
28
+
"Encrypted": false
29
+
},
19
30
{
20
31
"Name": "smtp_tls_security_level",
21
32
"Description": "The default SMTP TLS security level for the Postfix SMTP client",
postconf -e smtp_sasl_auth_enable="yes"# enable SASL authentication in the Postfix SMTP client. By default, the Postfix SMTP client uses no authentication.
71
+
postconf -e smtp_sasl_security_options="noanonymous"# removes the prohibition on plaintext password
72
+
postconf -e smtp_sasl_password_maps="lmdb:/etc/postfix/sasl_passwd"#hash:/ is deprecated using lmdb:/ instead
0 commit comments