Auteur: Phil Pennock Date: À: Sandro Tosi CC: exim-users@exim.org Sujet: Re: [exim] Max length of a filter line
On 2011-01-21 at 08:36 +0100, Sandro Tosi wrote: > am I getting right what the limit of 1024 is not for the whole text of
> the rule but for a single line in it? is there some "smart" way to split
> into several lines a regexp match? something like
Correct.
> if $sender_address matches "addr1@???|addr2@???|
> addr3@???|.....) then ...
>
> or something else?
if $sender_address matches "addr1@???|addr2@???"
or $sender_address matches "addr3@???|....."
then
#...
endif