diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/mail.pp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/mail.pp b/manifests/mail.pp index 5004f01..5b0f609 100644 --- a/manifests/mail.pp +++ b/manifests/mail.pp @@ -46,4 +46,8 @@ class nodo::mail { # Recipient restrictions postfix::config { "smtpd_recipient_restrictions": value => 'permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_rbl_client psbl.surriel.com, check_policy_service inet:127.0.0.1:10023' } + + # 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' } } |