sendmail.mc milters に次の行が表示されます。
Xclamantivirus, S=local:/var/run/clamav-milter/clamav.sock,F=T,T=S:4m;R:4m;E:4m
ローカルソケットとは何かを知っています。では、FTSRとE文字はどういう意味ですか?
答え1
「E:」を除くすべての項目はClamAVとSendmailを使用して電子メールでウイルスをスキャンします。著者:ピーターカグマンの形式を変更し、いくつかのタイプミスを修正しました。
S=
local:/var/run/clamav/clmilter.sock
もちろん、clamav-milterが作ったソケットです。
F=
フィルタが失敗した場合は、Sendmailに何をすべきかを伝えます。スペースは、フィルタがないかのように機能することを意味します。拒否するには「R」を使用し、一時的な障害には「T」を使用できます。
T=
タイムアウトを決定します。
S:4m
フィルタに送信するタイムアウトは4分です。
R:4m
フィルタからタイムアウトを受信する4分
答え2
S=local:/var/run/clamav/clmilter.sock offcourse is the socket created by clamav-milter
F= tells Sendmail what to do if the filter fail, blank means act as if there is no filter. You could use "R" for reject or "T" for temporary fail.
T= determens timeouts:
E= Overall timeout between sending end-of-message notices to the filter and waiting for the final acknowledgement.
R= a timeout of "n" minutes for receiving from the filter