Re: [Exim] wildlsearch problem

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Nico Erfurth
日付:  
To: Matt Bernstein
CC: exim-users
題目: 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