diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-05-16 22:28:51 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-05-16 22:28:51 -0300 |
commit | 90d7b624142d05936c464c5c125eaf505ddc603c (patch) | |
tree | f5f6edd679a59ddcaa563d7f4c966bd8eef5ae8b | |
parent | bc50f35e6de5387a9606da8f6845e4dbcd39e089 (diff) | |
download | puppet-nodo-90d7b624142d05936c464c5c125eaf505ddc603c.tar.gz puppet-nodo-90d7b624142d05936c464c5c125eaf505ddc603c.tar.bz2 |
Setting smtpd_use_tls and smtp_use_tls at nodo::mail
-rw-r--r-- | manifests/mail.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/mail.pp b/manifests/mail.pp index 30fe688..d1f2b42 100644 --- a/manifests/mail.pp +++ b/manifests/mail.pp @@ -50,4 +50,6 @@ class nodo::mail { # TLS postfix::config { "smtpd_tls_cert_file": value => '/etc/ssl/certs/cert.crt' } postfix::config { "smtpd_tls_key_file": value => '/etc/ssl/private/cert.pem' } + postfix::config { "smtpd_use_tls": value => 'yes' } + postfix::config { "smtp_use_tls": value => 'yes' } } |