diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 18:06:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 18:06:40 -0300 |
commit | 05f35dc96c80a7039c3e015f02ad61f83e3008d4 (patch) | |
tree | 1706be3acb126c1441e3cf4f05bdc05f598b3bf0 | |
parent | 681787bc89c90be80806c70f7d6cbb2c15fbc82d (diff) | |
download | puppet-mail-05f35dc96c80a7039c3e015f02ad61f83e3008d4.tar.gz puppet-mail-05f35dc96c80a7039c3e015f02ad61f83e3008d4.tar.bz2 |
Removing $domain from $relay_domains
-rw-r--r-- | manifests/system.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/system.pp b/manifests/system.pp index 4f8f20c..9946f2e 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -51,7 +51,7 @@ class mail::system { "myhostname": value => "$fqdn"; "mydestination": value => "$postfix_mydestination"; "mynetworks": value => "$postfix_mynetworks"; - "relay_domains": value => "$domain"; + "relay_domains": value => '$mydestination'; "transport_maps": value => "hash:/etc/postfix/transport"; "mailbox_command": value => '/usr/bin/maildrop -d ${USER}'; "virtual_mailbox_base": value => '/var/mail/virtual'; |