Allow TLSv1 for compatibility with older devices
This commit is contained in:
@@ -292,7 +292,7 @@ in
|
|||||||
ssl_server_key_file = x509PrivateKeyFile;
|
ssl_server_key_file = x509PrivateKeyFile;
|
||||||
# https://ssl-config.mozilla.org/#server=dovecot&version=2.3.21&config=intermediate&openssl=3.4.1&guideline=5.7
|
# https://ssl-config.mozilla.org/#server=dovecot&version=2.3.21&config=intermediate&openssl=3.4.1&guideline=5.7
|
||||||
ssl = "required";
|
ssl = "required";
|
||||||
ssl_min_protocol = "TLSv1.2";
|
ssl_min_protocol = "TLSv1";
|
||||||
ssl_server_prefer_ciphers = "client";
|
ssl_server_prefer_ciphers = "client";
|
||||||
ssl_cipher_list = lib.concatStringsSep ":" [
|
ssl_cipher_list = lib.concatStringsSep ":" [
|
||||||
# TLS1.3
|
# TLS1.3
|
||||||
|
|||||||
@@ -392,8 +392,8 @@ in
|
|||||||
smtpd_tls_auth_only = true;
|
smtpd_tls_auth_only = true;
|
||||||
|
|
||||||
# TLS versions supported for the SMTP server
|
# TLS versions supported for the SMTP server
|
||||||
smtpd_tls_protocols = ">=TLSv1.2";
|
smtpd_tls_protocols = ">=TLSv1";
|
||||||
smtpd_tls_mandatory_protocols = ">=TLSv1.2";
|
smtpd_tls_mandatory_protocols = ">=TLSv1";
|
||||||
|
|
||||||
# Require ciphersuites that OpenSSL classifies as "High"
|
# Require ciphersuites that OpenSSL classifies as "High"
|
||||||
smtpd_tls_ciphers = "high";
|
smtpd_tls_ciphers = "high";
|
||||||
|
|||||||
Reference in New Issue
Block a user