Re: [exim] System Filter regex problem.

Góra strony
Delete this message
Reply to this message
Autor: Jakob Hirsch
Data:  
Dla: Michael Strauss
CC: exim-users
Temat: 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