Re: [exim] System Filter regex problem.

Pàgina inicial
Delete this message
Reply to this message
Autor: Jakob Hirsch
Data:  
A: Michael Strauss
CC: exim-users
Assumpte: Re: [exim] System Filter regex problem.
Quoting Michael Strauss:

> Why? The Regex is the same above ...


"." matches everything but "\n". To change that, use the "s" modifier:

$ exim -be
> ${sg{bla\nblub}{\N^.+$\N}{ersetzt}}

bla
blub
> ${sg{bla\nblub}{\N(?s)^.+$\N}{ersetzt}}

ersetzt