diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-30 16:30:54 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-30 16:30:54 -0300 |
commit | 677da0ac5d95be53cccd80fa2098e6436e1dbe5f (patch) | |
tree | f207df61dd8e53a9713478805b64c00738dc00ad /manifests | |
parent | 61e929da096b0bf9658dd5b2c7402a0d3e2f8672 (diff) | |
download | puppet-mail-677da0ac5d95be53cccd80fa2098e6436e1dbe5f.tar.gz puppet-mail-677da0ac5d95be53cccd80fa2098e6436e1dbe5f.tar.bz2 |
Minor fixes
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/system.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/system.pp b/manifests/system.pp index 6cf759a..bea848a 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -39,7 +39,7 @@ class mail::system { # Sympa mailing list manager case $mail_sympa { true: { - $sympa_relaydomains = ", ${sympa_subdomain}.${domain}" + $sympa_relay_domains = ", ${sympa_subdomain}.${domain}" include mail::sympa } 'disabled': { @@ -57,7 +57,7 @@ class mail::system { '': { $schleuder_subdomain = "encrypted" } } - $schleuder_relaydomains = ", ${schleuder_subdomain}.${domain}" + $schleuder_relay_domains = ", ${schleuder_subdomain}.${domain}" include mail::schleuder } } |