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