Re: [exim] System Filter regex problem.

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Jakob Hirsch
日付:  
To: Michael Strauss
CC: 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