summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/mx.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-07 18:16:13 +0100
committervarac <varacanero@zeromail.org>2013-07-09 14:16:59 +0200
commitdb5fd91d32b215eb9827e36e2a51c98af993ab99 (patch)
tree93ee99ecab23942f6e82dd514c549a978e8562d7 /puppet/modules/site_postfix/manifests/mx.pp
parentc1e55fde49858c1bc9cf0da129a3b7df91cf9899 (diff)
added basic site_postfix::mx config
Diffstat (limited to 'puppet/modules/site_postfix/manifests/mx.pp')
-rw-r--r--puppet/modules/site_postfix/manifests/mx.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp
new file mode 100644
index 00000000..9104c2cb
--- /dev/null
+++ b/puppet/modules/site_postfix/manifests/mx.pp
@@ -0,0 +1,16 @@
+class site_postfix::mx {
+
+ $domain_hash = hiera ('domain')
+ $domain = $domain_hash['full_suffix']
+
+ # see https://leap.se/code/issues/1936 for contact email addr
+ #$root_mail_recipient = ''
+ $postfix_smtp_listen = 'all'
+
+ postfix::config {
+ # just en example
+ 'delay_warning_time': value => '4h';
+ }
+
+ include ::postfix
+}