summaryrefslogtreecommitdiff
path: root/puppet/modules/site_postfix/manifests/mx.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-04-26 10:09:21 +0200
committerMicah Anderson <micah@leap.se>2013-07-25 13:45:10 -0400
commita7bcd40d22769ec61b3fdb8d04dd447f6167ed7e (patch)
tree3a132c92ecdcd2adba2d3b947ea5ce57092e9a79 /puppet/modules/site_postfix/manifests/mx.pp
parent02e32f7310a1960f9665f08517368d8fef4ea216 (diff)
using alias resolver
Diffstat (limited to 'puppet/modules/site_postfix/manifests/mx.pp')
-rw-r--r--puppet/modules/site_postfix/manifests/mx.pp27
1 files changed, 7 insertions, 20 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp
index 2bf844bf..82536b80 100644
--- a/puppet/modules/site_postfix/manifests/mx.pp
+++ b/puppet/modules/site_postfix/manifests/mx.pp
@@ -11,28 +11,15 @@ class site_postfix::mx {
'mydestination':
value => "\$myorigin, localhost, localhost.\$mydomain, ${domain}";
'smtpd_recipient_restrictions':
- value => 'check_recipient_access hash:/etc/postfix/recipient,reject_unauth_destination';
- 'mailbox_size_limit':
- value => '0';
- 'home_mailbox':
- value => 'Maildir/';
- 'virtual_alias_maps':
- value => 'hash:/etc/postfix/virtual';
+ value => 'check_recipient_access tcp:localhost:2244,reject_unauth_destination';
+ 'mailbox_size_limit': value => '0';
+ 'home_mailbox': value => 'Maildir/';
+ 'virtual_alias_maps': value => 'tcp:localhost:4242';
+ 'luser_relay': value => 'vmail';
+ 'local_recipient_maps': value => '';
}
- postfix::hash { '/etc/postfix/virtual': }
- postfix::hash { '/etc/postfix/recipient': }
-
- # for now, accept all mail
- line {'deliver to vmail':
- file => '/etc/postfix/recipient',
- line => "@${domain} vmail",
- notify => Exec['generate /etc/postfix/recipient.db'],
- require => Package['postfix'],
- }
-
- postfix::virtual { "@${domain}": destination => 'vmail'; }
- #postfix::mailalias { 'vmail': recipient => 'vmail' }
+ #include site_postfix::mx::smtp_checks
user { 'vmail':
ensure => present,