diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-03-08 10:55:17 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-03-08 10:55:17 -0300 |
commit | b6f3cbd64061488d8bc4364affc27550095f5c45 (patch) | |
tree | e17cbd77c067ea8df252bd00ded96bded819048b /manifests | |
parent | cea573e472c3a2f2e462bbd5e19889be753d8ed2 (diff) | |
download | puppet-mail-b6f3cbd64061488d8bc4364affc27550095f5c45.tar.gz puppet-mail-b6f3cbd64061488d8bc4364affc27550095f5c45.tar.bz2 |
Fix smtpd_milters config
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/opendkim.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/opendkim.pp b/manifests/opendkim.pp index 5004efa..aade743 100644 --- a/manifests/opendkim.pp +++ b/manifests/opendkim.pp @@ -77,6 +77,6 @@ class mail::opendkim { postfix::config { "milter_protocol": value => '2' } postfix::config { "milter_default_action": value => 'accept' } - postfix::config { "osmtpd_milters": value => 'inet:localhost:12301' } + postfix::config { "smtpd_milters": value => 'inet:localhost:12301' } postfix::config { "non_smtpd_milters": value => 'inet:localhost:12301' } } |