Re: [exim] System Filter regex problem.

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Jakob Hirsch
Ημερομηνία:  
Προς: Michael Strauss
Υ/ο: exim-users
Αντικείμενο: 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