diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-06-07 11:52:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-06-07 11:52:14 -0300 |
commit | d357a0742b63106d23b8cf677d8aafcd4c32135f (patch) | |
tree | e18679d17e2e882e1e4252f346f154e172b32569 /manifests | |
parent | 6c131956e7e81f59b0d3a0e2ffd1294b6bc47a36 (diff) | |
download | puppet-mail-d357a0742b63106d23b8cf677d8aafcd4c32135f.tar.gz puppet-mail-d357a0742b63106d23b8cf677d8aafcd4c32135f.tar.bz2 |
Adding nonstandard parameter to some postfix::config definitions
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/postfixadmin.pp | 2 | ||||
-rw-r--r-- | manifests/schleuder.pp | 2 | ||||
-rw-r--r-- | manifests/sympa.pp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/manifests/postfixadmin.pp b/manifests/postfixadmin.pp index b974515..07d555b 100644 --- a/manifests/postfixadmin.pp +++ b/manifests/postfixadmin.pp @@ -11,7 +11,7 @@ class mail::postfixadmin { # postfix::config { "virtual_transport": value => 'dovecot'; - "dovecot_destination_recipient_limit": value => '1'; + "dovecot_destination_recipient_limit": value => '1', nonstandard => true; } postfix::config { "virtual_mailbox_domains": diff --git a/manifests/schleuder.pp b/manifests/schleuder.pp index 1be2f7a..b9c502e 100644 --- a/manifests/schleuder.pp +++ b/manifests/schleuder.pp @@ -2,7 +2,7 @@ class mail::schleuder { # Schleuder subsystems include mail::packages::schleuder - postfix::config { "schleuder_destination_recipient_limit": value => '1' } + postfix::config { "schleuder_destination_recipient_limit": value => '1', nonstandard => true } postfix::transport { "${schleuder_subdomain}.$domain": ensure => present, diff --git a/manifests/sympa.pp b/manifests/sympa.pp index a6d30a0..04c166e 100644 --- a/manifests/sympa.pp +++ b/manifests/sympa.pp @@ -82,8 +82,8 @@ class mail::sympa inherits mail::regexps { } postfix::config { - "sympa_destination_recipient_limit": value => '1'; - "sympabounce_destination_recipient_limit": value => '1'; + "sympa_destination_recipient_limit": value => '1', nonstandard => true; + "sympabounce_destination_recipient_limit": value => '1', nonstandard => true; } mailalias { "sympa": |