module-postfix/manifests/anonsasl.pp
mh 59010a1c30 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.
2012-04-07 13:56:47 -03:00

18 lines
382 B
Puppet

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'],
];
}
}