if it is possible to have more than one milter while using sendmail?
i have the following configuration in my sendmail.cf
# Input mail filters
O InputMailFilters=clmilter
Xclmilter, S=local:/var/run/clamav/clmilter.sock, F=, T=S:4m;R:4
O InputMailFilters=rxmilter
Xrxmilter, S=local:/var/spool/milter-regex/sock, T=S:30s;R:2m
however it seem that only milter-regex is working.
I used to have only clmilter, for antivirus scanning, then I add milter-regex
for filtering.
thanks and best regards,
riwan
Yes.
> i have the following configuration in my sendmail.cf
You should add/remove milters via the mc file rather than directly
modifying sendmail.cf
HTH,
Zoong
I had been able to do so in the sendmail.cf
I did this:
O InputMailFilters=rxmilter
Xrxmilter, S=local:/var/spool/milter-regex/sock, T=S:30s;R:2m
O InputMailFilters=clmilter
Xclmilter, S=local:/var/run/clamav/clmilter.sock, F=, T=S:4m;R:4
Where I should:
O InputMailFilters=rxmilter,clmilter
Xrxmilter, S=local:/var/spool/milter-regex/sock, T=S:30s;R:2m
Xclmilter, S=local:/var/run/clamav/clmilter.sock, F=, T=S:4m;R:4
Now both are working fine.
Best regards,
Riwan