diff options
-rw-r--r-- | manifests/system.pp | 1 | ||||
-rw-r--r-- | manifests/tls.pp | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/manifests/system.pp b/manifests/system.pp index a9568a1..b810325 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -14,6 +14,7 @@ class mail::system { $postfix_mydestination = '$myhostname, localhost.$mydomain, localhost' $postfix_default_relay_domains = '$mydestination' $postfix_mynetworks = hiera('postfix_mynetworks', "127.0.0.0/8") + $postfix_manage_tls_policy = hiera('postfix_manage_tls_policy', 'no') case $sympa_subdomain { '': { $sympa_subdomain = "lists" } diff --git a/manifests/tls.pp b/manifests/tls.pp index 0f63a56..d4d9246 100644 --- a/manifests/tls.pp +++ b/manifests/tls.pp @@ -7,9 +7,6 @@ class mail::tls { postfix::config { "smtpd_tls_security_level": value => 'may' } postfix::config { "smtp_tls_security_level": value => 'may' } - # TLS Policy - include postfix::tlspolicy - # SSL certificate ssl::cert { "cert": group => 'postfix', |