diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/mail.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/mail.pp b/manifests/mail.pp index 47b8159..8c6a6fb 100644 --- a/manifests/mail.pp +++ b/manifests/mail.pp @@ -3,7 +3,7 @@ class nodo::mail { $mail_delivery = "postfix" $postfix_relayhost = "$domain" $postfix_smtp_listen = "$ipaddress" - $postfix_mydestination = "\$myorigin" + $postfix_mydestination = '$myhostname, $mydomain, localhost.$mydomain, localhost' include nodo::vserver include postfix::mta @@ -34,7 +34,7 @@ class nodo::mail { # Postfix configuration postfix::config { "myhostname": value => "$fqdn" } - postfix::config { "mailbox_command": value => '/usr/bin/maildrop -d ${USER}' } + postfix::config { "mailbox_command": value => '/usr/bin/maildrop -d ${USER}' } # SASL postfix::config { "smtpd_sasl_auth_enable": value => 'yes' } |