Re: [Exim] Lsearch by IP

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: nvddussen
CC: exim-users
Subject: Re: [Exim] Lsearch by IP
Nico van der Dussen wrote:
> Hi I checked the code again - I made a booboo when copying - but that
> did not solve the problem - same error still exists.
>
> There seems to be a missng bracket in the last line of Philip's code.
> But the error continues when I add the bracket.
>
> I inserted spaces between "lsearch", "lsearch*" and the rest of the
> equation - but it did not work.
>
> Herewith my code as is now:
>
> smtp_accept_max_per_host =
> ${lookup{$sender_host_address}lsearch{/path/to/file}\
>                       {$value}\
>                      {\

>
> ${lookup{${mask:$sender_host_address/24}lsearch*{/path/to/file}}\

           ^ ^                            ^? Here you miss a closing }

>                       }}}


Nico