aboutsummaryrefslogtreecommitdiff
path: root/manifests/classes/postfix-anonsasl.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-07-13 22:30:12 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-07-13 22:30:12 -0300
commite70609a148ec092bc35dda0698deaa619eb1a67d (patch)
treeb2a14b50a5a94e8cf2337910a4eff48ba6c350be /manifests/classes/postfix-anonsasl.pp
parentc904fc86c52f335fe2fe4d93bba3dd59705b10fd (diff)
parent1f99fcdfdbe73be25c7a5ea80853bbc4618d4f76 (diff)
downloadpuppet-postfix-e70609a148ec092bc35dda0698deaa619eb1a67d.tar.gz
puppet-postfix-e70609a148ec092bc35dda0698deaa619eb1a67d.tar.bz2
Merge branch 'master' of git://gaffer.ptitcanardnoir.org/puppet-module-postfix
Diffstat (limited to 'manifests/classes/postfix-anonsasl.pp')
-rw-r--r--manifests/classes/postfix-anonsasl.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/manifests/classes/postfix-anonsasl.pp b/manifests/classes/postfix-anonsasl.pp
new file mode 100644
index 0000000..ca97f19
--- /dev/null
+++ b/manifests/classes/postfix-anonsasl.pp
@@ -0,0 +1,18 @@
+class postfix::anonsasl {
+
+ include postfix::header_checks
+
+ postfix::config {
+ 'smtpd_sasl_authenticated_header':
+ value => 'yes';
+ }
+
+ postfix::header_checks_snippet {
+ 'anonsasl':
+ content => template("postfix/anonsasl_header_checks.erb"),
+ require => [
+ Postfix::Config['smtpd_sasl_authenticated_header'],
+ ];
+ }
+
+}