diff options
author | mh <mh@immerda.ch> | 2012-02-16 16:51:56 +0100 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-04-07 13:56:47 -0300 |
commit | 59010a1c304801db6423f67d656399478fc603f0 (patch) | |
tree | 2ff29f6c26451f2dd62f53a3a5abb5b09bef7ab4 /manifests/classes/postfix-anonsasl.pp | |
parent | 462db65ec48b6398c9a04a88cc4c197eb73f34fa (diff) | |
download | puppet-postfix-59010a1c304801db6423f67d656399478fc603f0.tar.gz puppet-postfix-59010a1c304801db6423f67d656399478fc603f0.tar.bz2 |
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/classes/postfix-anonsasl.pp')
-rw-r--r-- | manifests/classes/postfix-anonsasl.pp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/manifests/classes/postfix-anonsasl.pp b/manifests/classes/postfix-anonsasl.pp deleted file mode 100644 index ca97f19..0000000 --- a/manifests/classes/postfix-anonsasl.pp +++ /dev/null @@ -1,18 +0,0 @@ -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'], - ]; - } - -} |