blob: ca97f199749615eb12ac9667dd0aeb05579146cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'],
];
}
}
|