summaryrefslogtreecommitdiff
path: root/manifests/anonsasl.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-02-16 16:51:56 +0100
committerSilvio Rhatto <rhatto@riseup.net>2012-04-07 13:56:47 -0300
commit59010a1c304801db6423f67d656399478fc603f0 (patch)
tree2ff29f6c26451f2dd62f53a3a5abb5b09bef7ab4 /manifests/anonsasl.pp
parent462db65ec48b6398c9a04a88cc4c197eb73f34fa (diff)
put classes and defines in the proper place
To take advantage of puppet's autoloading feature, which will be mandatory sooner or later. We move all the files in their appropriate place.
Diffstat (limited to 'manifests/anonsasl.pp')
-rw-r--r--manifests/anonsasl.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/manifests/anonsasl.pp b/manifests/anonsasl.pp
new file mode 100644
index 0000000..ca97f19
--- /dev/null
+++ b/manifests/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'],
+ ];
+ }
+
+}