diff options
author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-06-03 12:34:43 +0200 |
---|---|---|
committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-06-03 12:34:43 +0200 |
commit | ed80b589d303496f2329e2e6019a95ee2500b580 (patch) | |
tree | c6985724abddc4aea5962fd6704c69db5a3e5b9f | |
parent | 46a0829aa82c5a56e6b6c24aa8d8046c52a716a4 (diff) |
postfix: remove deprecated smtpd_tls_eecdh_grade
Causes a warning that suggests to just leave it at its default.
-rw-r--r-- | mail-server/postfix.nix | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mail-server/postfix.nix b/mail-server/postfix.nix index c050736..351da81 100644 --- a/mail-server/postfix.nix +++ b/mail-server/postfix.nix @@ -274,9 +274,6 @@ in # Submission by mail clients is handled in submissionOptions smtpd_tls_security_level = "may"; - # strong might suffice and is computationally less expensive - smtpd_tls_eecdh_grade = "ultra"; - # Disable obselete protocols smtpd_tls_protocols = "TLSv1.3, TLSv1.2, TLSv1.1, !TLSv1, !SSLv2, !SSLv3"; smtp_tls_protocols = "TLSv1.3, TLSv1.2, TLSv1.1, !TLSv1, !SSLv2, !SSLv3"; |