Re: [exim] Conditional router on remote IP

Top Pagina
Delete this message
Reply to this message
Auteur: Mike Cardwell
Datum:  
Aan: exim users
Onderwerp: Re: [exim] Conditional router on remote IP
Christian Gregoire wrote:

> I have a hostlist variable with many IP addresses :
> hostlist open_relay_hosts = 10.0.0.1 : 10.0.0.2 : 192.168.1.12 ...............
>
> How can I have a router called only when the remote IP address is one of these ?
>
> The following condition fails to parse :
> condition = ${if eq {$sender_host_address}{+open_relay_hosts}}


condition = ${if match_ip{$sender_host_address}{+open_relay_hosts}}

(I think)

Mike