diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-10-20 13:41:42 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-10-20 13:41:42 -0200 |
commit | 389802e01479ba5a0b29e01451e57e1f8b6feb13 (patch) | |
tree | 5ec2d5848759bcd2c6b1681e08ba2414e906618d /manifests | |
parent | ccdbd41de5b996c8cbd2476bfc7054affb1d0625 (diff) | |
download | puppet-mail-389802e01479ba5a0b29e01451e57e1f8b6feb13.tar.gz puppet-mail-389802e01479ba5a0b29e01451e57e1f8b6feb13.tar.bz2 |
Syntax fix
Diffstat (limited to 'manifests')
-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' } |