Question about ACL

Spark

Verified User
Joined
Aug 25, 2006
Messages
109
# OPTIONAL MODIFICATIONS:
# in the below ACL entries replace "http://www.example.com/" with
# the full URL of your own whitelist page

# deny domains in local blacklist
deny message = Email blocked by LBL - to unblock see http://www.example.com/
# only for domains that do want to be tested against RBLs
domains = +use_rbl_domains
sender_domains = +blacklist_domains

# deny hostnames in bad_sender_hosts blacklist
deny message = Email blocked by BSHL - to unblock see http://www.example.com/
# only for domains that do want to be tested against RBLs
domains = +use_rbl_domains
hosts = +bad_sender_hosts

# deny IPs in bad_sender_hosts blacklist
deny message = Email blocked by BSHL - to unblock see http://www.example.com/
# only for domains that do want to be tested against RBLs
domains = +use_rbl_domains
hosts = +bad_sender_hosts_ip

# deny email addresses in blacklist_senders
deny message = Email blocked by BSAL - to unblock see http://www.example.com/
domains = use_rbl_domains
deny senders = +blacklist_senders

Why is the last block different than all the others... shouldnt it be:


# deny email addresses in blacklist_senders
deny message = Email blocked by BSAL - to unblock see http://www.example.com/
domains = +use_rbl_domains
senders = +blacklist_senders
 
It may be a typo. Please post the top five lines of your exim.conf file so I can do some research.

Thanks.

Jeff
 
It may be a typo. Please post the top five lines of your exim.conf file so I can do some research.

Thanks.

Jeff


It's the same in:
SpamBlocker.exim.conf.2.1.1-release 05-Jun-2007

# deny using email address in blacklist_senders
deny message = Email blocked by BSAL - to unblock see http://www.
domains = use_rbl_domains
deny senders = +blacklist_senders

/ Gunnar
 
It's a typographical error. Please feel free to fix it in your copy :) .

Jeff
 
Back
Top