Add option for SMTPUTF8

This commit is contained in:
Jamie Cameron 2025-06-12 09:57:16 -07:00
parent 125c3865a3
commit 55d03d426a
2 changed files with 6 additions and 0 deletions

View File

@ -868,6 +868,7 @@ opts_smtpd_tls_key_file=TLS private key file
opts_smtpd_tls_CAfile=TLS certificate authority file opts_smtpd_tls_CAfile=TLS certificate authority file
opts_smtpd_use_tls=Enable TLS encryption? opts_smtpd_use_tls=Enable TLS encryption?
opts_smtp_enforce_tls=Require TLS encryption? opts_smtp_enforce_tls=Require TLS encryption?
opts_smtputf8_enable=Enable SMTPUTF8 support?
sasl_err=Failed to save SMTP authentication and encryption sasl_err=Failed to save SMTP authentication and encryption
sasl_ecert=Missing or invalid TLS certificate file sasl_ecert=Missing or invalid TLS certificate file
sasl_ekey=Missing or invalid TLS key file sasl_ekey=Missing or invalid TLS key file

View File

@ -100,6 +100,11 @@ if (&compare_version_numbers($postfix_version, 3.3) >= 0) {
&option_yesno("smtp_balance_inet_protocols"); &option_yesno("smtp_balance_inet_protocols");
} }
# SMTPUTF8 support
if (&compare_version_numbers($postfix_version, 3.0) >= 0) {
&option_yesno("smtputf8_enable");
}
print &ui_table_end(); print &ui_table_end();
print &ui_form_end([ [ undef, $text{'opts_save'} ] ]); print &ui_form_end([ [ undef, $text{'opts_save'} ] ]);