Re: [Exim] Exim and W32/Klez.eml virus

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Tom Kistner
日付:  
To: Ganbold
CC: exim-users
題目: Re: [Exim] Exim and W32/Klez.eml virus
Ganbold wrote:

> I'm having problem with exiscan when checking Klez macro virus. It says
> "2003-02-26 11:36:46 18nsMU-0006xv-00 exiscan: warning: error parsing
> returned output".


> exiscan_av_scanner_regexp_description = Found[: ] (.+)$

[ .. ]
>         Found the W32/Klez.eml virus !!!


The regex will not match on that line. Try

exiscan_av_scanner_regexp_description = Found[: ](.+)

(note the removed whitespace)

/tom