added postfix::amavis, no relayhost needed for postfix::mta

This commit is contained in:
Varac 2009-12-17 16:37:53 +01:00
parent 8a23f6d5b1
commit 60544a57c9
5 changed files with 51 additions and 4 deletions

4
README
View file

@ -4,6 +4,10 @@ This module will help install and configure postfix.
A couple of classes will preconfigure postfix for common needs.
Config
------
- set $postfix_amavis="true" to include postfix::amavis
== Example:
include postfix

View file

@ -0,0 +1,7 @@
class postfix::amavis {
include amavisd-new
postfix::config {
"content_filter": value => "smtp-amavis:[localhost]:10024"; }
}

View file

@ -32,9 +32,9 @@
#
class postfix::mta {
case $postfix_relayhost {
"": { fail("Required \$postfix_relayhost variable is not defined.") }
}
#case $postfix_relayhost {
# "": { fail("Required \$postfix_relayhost variable is not defined.") }
#}
case $postfix_mydestination {
"": { $postfix_mydestination = "\$myorigin" }

View file

@ -41,6 +41,13 @@ class postfix {
"": { $root_mail_recipient = "nobody" }
}
case $postfix_amavis {
"": { $postfix_amavis = "false" }
"true": { include postfix::amavis }
}
package { ["postfix", "mailx"]:
ensure => installed
@ -81,7 +88,7 @@ class postfix {
mode => "0644",
content => $operatingsystem ? {
Redhat => template("postfix/master.cf.redhat5.erb"),
Debian => template("postfix/master.cf.debian-etch.erb"),
Debian,Ubuntu => template("postfix/master.cf.debian-etch.erb"),
},
seltype => $postfix_seltype,
notify => Service["postfix"],

View file

@ -75,3 +75,32 @@ mailman unix - n n - - pipe
flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
${nexthop} ${user}
# Amavis
<% if (postfix_amavis == "true" ) -%>
## http://www.freespamfilter.org/FC4.html#_Toc110999176
smtp-amavis unix - - y - 2 smtp
-o smtp_data_done_timeout=1200
-o smtp_send_xforward_command=yes
-o disable_dns_lookups=yes
127.0.0.1:10025 inet n - y - - smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o smtpd_restriction_classes=
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o mynetworks=127.0.0.0/8
-o strict_rfc821_envelopes=yes
-o smtpd_error_sleep_time=0
-o smtpd_soft_error_limit=1001
-o smtpd_hard_error_limit=1000
-o receive_override_options=no_header_body_checks
<% else -%>
# Amavis not configured
<% end -%>