From: Silvio Rhatto Date: Mon, 20 Oct 2014 15:41:42 +0000 (-0200) Subject: Syntax fix X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=389802e01479ba5a0b29e01451e57e1f8b6feb13;p=puppet-mail.git Syntax fix --- 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' }