Просмотр исходного кода

Disable SMTPUTF8 in Postfix due Dovecot-LMTP isn't support it (#3680)

SMTPUTF8 to work correctly must be done end-to-end. Leaving it enabled now when LMTP cant receive such email gives more issues then profit.
Dmitriy Alekseev 5 лет назад
Родитель
Сommit
72387a4a48
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      data/conf/postfix/main.cf

+ 1 - 1
data/conf/postfix/main.cf

@@ -188,7 +188,7 @@ transport_maps = pcre:/opt/postfix/conf/custom_transport.pcre,
 smtp_sasl_auth_soft_bounce = no
 smtp_sasl_auth_soft_bounce = no
 postscreen_discard_ehlo_keywords = silent-discard, dsn
 postscreen_discard_ehlo_keywords = silent-discard, dsn
 compatibility_level = 2
 compatibility_level = 2
-smtputf8_enable = yes
+smtputf8_enable = no
 # Define protocols for SMTPS and submission service
 # Define protocols for SMTPS and submission service
 submission_smtpd_tls_mandatory_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1
 submission_smtpd_tls_mandatory_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1
 smtps_smtpd_tls_mandatory_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1
 smtps_smtpd_tls_mandatory_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1