diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-02-16 16:15:31 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-02-16 16:15:31 -0200 |
commit | 66b96fe144ada95b1f3c51c14ff014b27f03254d (patch) | |
tree | 52f9eddedbabbb8f224337b688be14d0dfc6432a | |
parent | 42b43f5d2a4f243c9d17930e85e85350de15ab1b (diff) | |
download | puppet-mail-66b96fe144ada95b1f3c51c14ff014b27f03254d.tar.gz puppet-mail-66b96fe144ada95b1f3c51c14ff014b27f03254d.tar.bz2 |
Minor fixes
-rw-r--r-- | manifests/base.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/base.pp b/manifests/base.pp index 5a4cdc5..7e8d174 100644 --- a/manifests/base.pp +++ b/manifests/base.pp @@ -16,13 +16,13 @@ class mail::base { # Postgrey port configuration $postgrey_port = $lsbdistcodename ? { - 'lenny' => '60000', - 'default' => '10023', + 'lenny' => '60000', + default => '10023', } # 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:$postgrey_port' } + value => 'permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_rbl_client psbl.surriel.com, check_policy_service inet:127.0.0.1:${postgrey_port}' } postfix::hash { "/etc/postfix/virtual": ensure => present, |