diff options
author | Varac <varacanero@zeromail.org> | 2009-12-17 16:37:53 +0100 |
---|---|---|
committer | Varac <varacanero@zeromail.org> | 2009-12-17 16:37:53 +0100 |
commit | 60544a57c9e2d014061d2c2775654918890a648c (patch) | |
tree | 77e9a65cffe8161d77d70ae629afe9a20868058f /manifests/classes/postfix.pp | |
parent | 8a23f6d5b1022d79432734366e131af6f5d3b46f (diff) | |
download | puppet-postfix-60544a57c9e2d014061d2c2775654918890a648c.tar.gz puppet-postfix-60544a57c9e2d014061d2c2775654918890a648c.tar.bz2 |
added postfix::amavis, no relayhost needed for postfix::mta
Diffstat (limited to 'manifests/classes/postfix.pp')
-rw-r--r-- | manifests/classes/postfix.pp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/manifests/classes/postfix.pp b/manifests/classes/postfix.pp index 8c4173e..a413664 100644 --- a/manifests/classes/postfix.pp +++ b/manifests/classes/postfix.pp @@ -41,6 +41,13 @@ class postfix { "": { $root_mail_recipient = "nobody" } } + case $postfix_amavis { + "": { $postfix_amavis = "false" } + "true": { include postfix::amavis } + } + + + package { ["postfix", "mailx"]: ensure => installed @@ -81,7 +88,7 @@ class postfix { mode => "0644", content => $operatingsystem ? { Redhat => template("postfix/master.cf.redhat5.erb"), - Debian => template("postfix/master.cf.debian-etch.erb"), + Debian,Ubuntu => template("postfix/master.cf.debian-etch.erb"), }, seltype => $postfix_seltype, notify => Service["postfix"], |