summaryrefslogtreecommitdiff
path: root/manifests/system.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-04-07 15:42:31 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-04-07 15:42:31 -0300
commit2af99be9d538b91130438473697b0e1d8279bee9 (patch)
tree74d1199df697c8f32f96a7cfb8311ffd2aec9c52 /manifests/system.pp
parentac8298c65fff6dabfd3c45df571679284c61f81a (diff)
downloadpuppet-mail-2af99be9d538b91130438473697b0e1d8279bee9.tar.gz
puppet-mail-2af99be9d538b91130438473697b0e1d8279bee9.tar.bz2
Using transport_regexp and virtual_regexp management from postfix module
Diffstat (limited to 'manifests/system.pp')
-rw-r--r--manifests/system.pp19
1 files changed, 10 insertions, 9 deletions
diff --git a/manifests/system.pp b/manifests/system.pp
index f9cd31b..b0926f5 100644
--- a/manifests/system.pp
+++ b/manifests/system.pp
@@ -1,12 +1,14 @@
class mail::system {
- $postfix_smtp_listen = "all"
- $postfix_use_amavisd = "yes"
- $postfix_use_dovecot_lda = "yes"
- $postfix_use_schleuder = "yes"
- $postfix_use_sympa = "yes"
- $postfix_anon_sasl = "yes"
- $postfix_mydestination = '$myhostname, localhost.$mydomain, localhost'
- $postfix_default_relay_domains = '$mydestination'
+ $postfix_smtp_listen = "all"
+ $postfix_use_amavisd = "yes"
+ $postfix_use_dovecot_lda = "yes"
+ $postfix_use_schleuder = "yes"
+ $postfix_use_sympa = "yes"
+ $postfix_anon_sasl = "yes"
+ $postfix_manage_transport_regexp = "yes"
+ $postfix_manage_virtual_regexp = "yes"
+ $postfix_mydestination = '$myhostname, localhost.$mydomain, localhost'
+ $postfix_default_relay_domains = '$mydestination'
case $postfix_mynetworks {
'': { $postfix_mynetworks = "127.0.0.0/8" }
@@ -48,7 +50,6 @@ class mail::system {
include mail::sympa::disabled
}
default: {
- include mail::regexps
}
}