Re: [Exim] Whitelisting RBL positives

Top Page
Delete this message
Reply to this message
Author: Adam D. Barratt
Date:  
To: exim-users
Subject: Re: [Exim] Whitelisting RBL positives
On Sun, 2003-07-20 at 13:00, Jerry Jorgenson wrote:
> [...]
> Thanks Richard and Marcus, but I still get denyed because of RBL with both
> solutions and Marcus' solution also stops mail going out. Perhaps I didn't
> give enough of the acl. It's all the standard stuff except for the
> dnslists part. FWIW, I also notice that the $dnslist_domain and
> $dnslist_text variables are always blank. This is Exim 4.20
> [...]
> #[ acl section ]
> acl_check_rcpt:
> [...]
>   deny    dnslists      = relays.ordb.org : sbl.spamhaus.org
>   deny    message       = rejected because $sender_host_address is in a
> black list at $dnslist_domain\n$dnslist_text
>   log_message           = found in RBL $dnslist_domain


Every "deny", "accept", etc., starts a *new* ACL entry. So, the above is
actually two entries:
1) deny if in dnslists
2) deny *with* *no* *condition* (i.e. deny *all*)

It should all be one entry:
  deny    dnslists    =
          message     =
          log_message =


hth

Adam