diff options
-rw-r--r-- | manifests/tls/hardened.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/tls/hardened.pp b/manifests/tls/hardened.pp index 63306f5..34eff9e 100644 --- a/manifests/tls/hardened.pp +++ b/manifests/tls/hardened.pp @@ -2,7 +2,7 @@ class mail::tls::hardened inherits mail::tls { # Hardened config postfix::config { "smtpd_tls_ciphers": value => 'high' } postfix::config { "smtp_tls_protocols": value => '!SSLv2, !SSLv3' } - postfix::config { "smtp_tls_mandatory_protocols" value => '!SSLv2, !SSLv3' } + postfix::config { "smtp_tls_mandatory_protocols": value => '!SSLv2, !SSLv3' } postfix::config { "smtp_tls_note_starttls_offer": value => 'yes' } postfix::config { "smtpd_tls_received_header": value => 'yes' } postfix::config { "smtpd_tls_protocols": value => '!SSLv2, !SSLv3' } |