diff options
| author | varac <varacanero@zeromail.org> | 2013-07-15 11:34:22 +0200 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2013-07-15 11:34:22 +0200 | 
| commit | f64791335e40b2b6e05305a6d8dda989fb755b9d (patch) | |
| tree | fe8626b849611e7308c4f561b26cd746186844eb /puppet/modules | |
| parent | c11047649e1ef630b48b007fb757fcc68b747e62 (diff) | |
fix smtpd_recipient_restrictions, debug connections from localhost
Diffstat (limited to 'puppet/modules')
| -rw-r--r-- | puppet/modules/site_postfix/manifests/mx.pp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp index e9656072..5ec8ab49 100644 --- a/puppet/modules/site_postfix/manifests/mx.pp +++ b/puppet/modules/site_postfix/manifests/mx.pp @@ -12,13 +12,13 @@ class site_postfix::mx {      'mydestination':        value => "\$myorigin, localhost, localhost.\$mydomain, ${domain}";      'smtpd_recipient_restrictions': -      value => 'check_recipient_access tcp:localhost:2244,reject_unauth_destination,permit_tls_all_clientcerts'; +      value => 'check_recipient_access tcp:localhost:2244,permit_tls_all_clientcerts,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  => ''; -    #'debug_peer_list':      value => '127.0.0.1'; +    'debug_peer_list':      value => '127.0.0.1';    }    include site_postfix::mx::smtpd_checks  | 
