[exim] deny and warn in an acl

Top Page
Delete this message
Reply to this message
Author: Rob Munsch
Date:  
To: exim-users
Subject: [exim] deny and warn in an acl
Is it possible to use both? Frex i want to Deny based on certain RBLs,
and only provide a header with others - i'm not getting the expected
results with this. I still seem to be rejecting at RCPT time everything
specified under the warn section:

---
   .ifdef CHECK_RCPT_IP_DNSBLS
   deny
         dnslists =      sbl.spamhaus.org : \
                         list.dsbl.org : \
                         bl.spamcop.net
         message = X-Warning: $sender_host_address is listed at 
dnslist_domain ($dnslist_value: $dnslist_text)
         log_message = $sender_host_address is listed at $dnslist_domain 
($dnslist_value: $dnslist_text)


   warn message = X-blacklisted-at: $dnslist_domain
         dnslists =      cbl.abuseat.org : \
                         dnsbl.sorbs.net


.endif
---

TIA.