Auteur: Jakob Hirsch
Date:
À: Michael Strauss
CC: exim-users
Sujet: 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