diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-02-20 12:04:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-02-20 12:04:33 -0300 |
commit | 629fde0cbdfef218dfa3793c733f3ef10424e714 (patch) | |
tree | db449b17eef2269cfbc740e47516c57032b1a02a | |
parent | 5cbe595542285489fa91eb68bccee12cce01a9ba (diff) | |
download | puppet-mail-629fde0cbdfef218dfa3793c733f3ef10424e714.tar.gz puppet-mail-629fde0cbdfef218dfa3793c733f3ef10424e714.tar.bz2 |
Managing smtpd_tls_CApath and smtp_tls_CApath
-rw-r--r-- | manifests/tls.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/tls.pp b/manifests/tls.pp index 5de2249..6236830 100644 --- a/manifests/tls.pp +++ b/manifests/tls.pp @@ -5,6 +5,8 @@ class mail::tls { postfix::config { "smtpd_tls_security_level": value => 'may' } postfix::config { "smtp_tls_security_level": value => 'may' } postfix::config { "smtp_tls_policy_maps": value => 'hash:/etc/postfix/tls_policy' } + postfix::config { "smtpd_tls_CApath": value => '/etc/ssl/certs' } + postfix::config { "smtp_tls_CApath": value => '/etc/ssl/certs' } postfix::hash { "/etc/postfix/tls_policy": ensure => present, |