summaryrefslogtreecommitdiff
path: root/postfix
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2002-12-08 19:48:48 +0000
committerJonas Smedegaard <dr@jones.dk>2002-12-08 19:48:48 +0000
commitaf40856bc055aa8a63e4fb81a52e4043d4181b76 (patch)
treefa94e5fa00e41aefca17dee213a40dc9d76e2d68 /postfix
parentb7e24940f057075ee45a09fa4b28eda2a9d33d9d (diff)
Disable Helo restriction - it causes false positives, even with local daemons.
Diffstat (limited to 'postfix')
-rwxr-xr-xpostfix/anti-uce.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix/anti-uce.sh b/postfix/anti-uce.sh
index 6458e25..cfa5059 100755
--- a/postfix/anti-uce.sh
+++ b/postfix/anti-uce.sh
@@ -3,7 +3,7 @@
mapsfile="/etc/local-COMMON/postfix/rbl_lookup_hosts"
maps=`cat $mapsfile | grep -v '^#' | sed 's/#.*//' | tr "\n" "," | sed -e 's/[, ]\+/,/g' -e 's/,$//'`
-postconf -e "smtpd_helo_required = yes"
+#postconf -e "smtpd_helo_required = yes" # causes false positives, even for local daemons
postconf -e "permit_mx_backup_networks = /etc/local-COMMON/postfix/mx_networks"
postconf -e "maps_rbl_domains = $maps"
postconf -e "smtpd_recipient_restrictions = reject_invalid_hostname,reject_non_fqdn_hostname,reject_non_fqdn_sender,reject_non_fqdn_recipient,reject_unknown_sender_domain,reject_unknown_recipient_domain,reject_unauth_pipelining,permit_mynetworks,permit_mx_backup,reject_unauth_destination,reject_maps_rbl,reject"