fix(postfix): Templating for SASL security options

This commit is contained in:
Philip Gaber
2025-11-19 13:38:25 +01:00
parent d25c95f06b
commit 4ceeff0094
3 changed files with 94 additions and 48 deletions

View File

@@ -20,4 +20,15 @@ smtp:
key: ""
selector: "rsa"
useED25519: false
security:
# Postfix defaults
# Ref.: https://www.postfix.org/postconf.5.html#smtpd_sasl_security_options
smtpdSASLSecurityOptions:
- "noanonymous"
# Postfix defaults
# Ref.: https://www.postfix.org/postconf.5.html#smtp_sasl_security_options
smtpSASLSecurityOptions:
- "noanonymous"
- "noplaintext"
...