Re: [exim] System Filter regex problem.

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Jakob Hirsch
Data:  
Para: Michael Strauss
CC: exim-users
Asunto: 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