Re: [exim] check_helo_slow?

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: David Woodhouse
Data:  
Para: David
CC: exim-users, Rick Cooper
Asunto: 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