Auteur: Nico Erfurth Date: À: Matt Bernstein CC: exim-users Sujet: Re: [Exim] wildlsearch problem
Matt Bernstein wrote:
> ^mail\d+\.recessionspecials\.com: you don't accept our bounces
> 123-malls.com: you don't accept our bounces
>
> Now lines which aren't regexes work exactly as I'd like. Presumably I've
> missed Something Stupid in the regex case. Is ":" the Right Delimiter?
The problem is, that wildlsearch uses the same matching function as the
normal list matching.
Make it
^\Nmail\d+\.recessionspecials\.com\N: you don't accept our bounces
or
^mail\\d+\\.recessionspecials\\.com: you don't accept our bounces