Re: [Exim] wildlsearch problem

Etusivu
Poista viesti
Vastaa
Lähettäjä: Nico Erfurth
Päiväys:  
Vastaanottaja: Matt Bernstein
Kopio: exim-users
Aihe: 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

You can easily test such thing with exim -be -d

Nico