Re: [Exim] Verisign pulls a fast one

Top Page
Delete this message
Reply to this message
Author: Richard Lithvall
Date:  
To: exim-users
Subject: Re: [Exim] Verisign pulls a fast one
Pat Lashley wrote:

> Or turn VeriSign into an RBL list via:
>
>     deny    message  = Listed in VeriSign wildcard A records
>         dnslists = XX.nstld.com=64.94.110.11


That didn't work...
But you inspired me to write this working ACL (to be run in acl_smtp_rcpt):

   deny message = Listed in VeriSign wildcard A records
      condition = ${if eq{${lookup \
  dnsdb{a=${sender_address_domain}}{$value}}}{64.94.110.11}{yes}{no}}


Regards,
Richard