Re: [exim] check_helo_slow?

Top Page
Delete this message
Reply to this message
Author: David Woodhouse
Date:  
To: David
CC: exim-users, Rick Cooper
Subject: Re: [exim] check_helo_slow?
On Mon, 2005-01-10 at 16:56 +0100, David wrote:
>            condition     = ${if eq{$sender_helo_name}\
>                           {[$sender_host_address]}{yes}{no}}


IPv6 literals are '[IPv6:$sender_host_address]'. So maybe...

condition     = ${if eq{$sender_helo_name}\
    {[${if isip6{$sender_host_address}{IPv6:}}$sender_host_address]}{1}}


Of course, you'll then be rejecting hosts which offer an RFC1918 IP
literal, or IPv6-only hosts which connect to your box on the Legacy
Internet via NAT-PT.

--
dwmw2