Re: [Exim] wildlsearch problem

Kezdőlap
Üzenet törlése
Válasz az üzenetre
Szerző: Nico Erfurth
Dátum:  
Címzett: Matt Bernstein
CC: exim-users
Tárgy: 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