summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/satellite.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_postfix/manifests/satellite.pp')
-rw-r--r--puppet/modules/site_postfix/manifests/satellite.pp11
1 files changed, 10 insertions, 1 deletions
diff --git a/puppet/modules/site_postfix/manifests/satellite.pp b/puppet/modules/site_postfix/manifests/satellite.pp
index f5d5c7b7..5725e6b8 100644
--- a/puppet/modules/site_postfix/manifests/satellite.pp
+++ b/puppet/modules/site_postfix/manifests/satellite.pp
@@ -32,7 +32,16 @@ class site_postfix::satellite {
# we could also make this an optional parameter for providers without
# dns / local domains
- postfix::config { 'smtp_host_lookup': value => 'native'; }
+ postfix::config {
+ 'smtp_host_lookup':
+ value => 'native';
+
+ # Note: we are setting this here, instead of in site_postfix::mx::smtp_tls
+ # because the mx server has to have a different value
+ 'smtp_tls_security_level':
+ value => 'encrypt';
+ }
include site_postfix::mx::smtp_tls
+
}