mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
set _all_ client&server options to exclude v2 and v3 #24
This commit is contained in:
parent
c7a8d1cb7a
commit
2900d5122c
1 changed files with 3 additions and 1 deletions
|
|
@ -83,8 +83,10 @@ class PostfixConfigGenerator:
|
|||
# between Postfix version 2.5 and 2.6, since we only support => 2.11
|
||||
# we don't use nor support legacy Postfix syntax.
|
||||
# - Server:
|
||||
self.ensure_cf_var("smtp_tls_protocols", "!SSLv2, !SSLv3", [])
|
||||
self.ensure_cf_var("smtpd_tls_protocols", "!SSLv2, !SSLv3", [])
|
||||
self.ensure_cf_var("smtpd_tls_mandatory_protocols", "!SSLv2, !SSLv3", [])
|
||||
# - Client:
|
||||
self.ensure_cf_var("smtp_tls_protocols", "!SSLv2, !SSLv3", [])
|
||||
self.ensure_cf_var("smtp_tls_mandatory_protocols", "!SSLv2, !SSLv3", [])
|
||||
|
||||
def maybe_add_config_lines(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue