Re: [Exim] wildlsearch problem

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: Matt Bernstein
CC: exim-users
Subject: 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