Re: [exim] How to disable logging unroutable addresses?

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Marc Sherman
日付:  
To: exim-users
題目: Re: [exim] How to disable logging unroutable addresses?
Jakob Hirsch wrote:
>
> Oh, cool, I didn't know that. Where is this documented? And is this
> still true if you run egrep and therefore tell grep to use the pattern
> as an extended regex? (hm, probably yes...)


That's the nature of a regexp. The regexp language is designed to be
compilable into an FSM (as long as backrefs aren't used) which can be
run very efficiently.

http://en.wikipedia.org/wiki/Regular_expression#Implementations_and_running_times

- Marc