diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-05-15 19:41:19 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-05-15 19:41:19 -0300 |
commit | a1a3c0f1c47e81ab07790b6c7e05c653631edd81 (patch) | |
tree | 46d8091dce220f6ad0ec2214904fc90f4b32a752 | |
parent | ff625c79a66973fcd8794e07b43f3bd66cd63465 (diff) | |
download | puppet-nodo-a1a3c0f1c47e81ab07790b6c7e05c653631edd81.tar.gz puppet-nodo-a1a3c0f1c47e81ab07790b6c7e05c653631edd81.tar.bz2 |
Using ssl::mail at nodo::mail
-rw-r--r-- | manifests/mail.pp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/manifests/mail.pp b/manifests/mail.pp index 4e0421a..c21de6d 100644 --- a/manifests/mail.pp +++ b/manifests/mail.pp @@ -8,7 +8,7 @@ class nodo::mail { include nodo::vserver include postfix::mta include database - include ssl + include ssl::mail # The needed packages package { [ 'postfix-mysql', 'dovecot-imapd', 'maildrop' ]: @@ -50,9 +50,4 @@ class nodo::mail { # TLS postfix::config { "smtpd_tls_cert_file": value => '/etc/ssl/private/cert.pem' } postfix::config { "smtpd_tls_key_file": value => '/etc/ssl/private/cert.pem' } - - File['/etc/ssl/private/cert.pem'] { - group => postfix, - mode => 0640, - } } |