Fw: [Clamav-users] problems using sendmail with clamav on rh7.3

2004-05-04 Thread Roberto Espinosa
add the followings lines to sendmail.mc and run again m4 define(_FFR_MILTER)dnl INPUT_MAIL_FILTER(`clamav', `S=local:/var/clamav/clamav.sock, F=, T=S:4m;R:4m')dnl define(`confINPUT_MAIL_FILTERS', `clamav')dnl Roberto - Original Message - From: "Todd Lyons" <[EMAIL PROTECTE

Fw: [Clamav-users] Re: clamav-milter doesn't "see" virus on emails? (help!)

2004-05-04 Thread Roberto Espinosa
Hi I test adding the followings lines to sendmail.mc define(_FFR_MILTER)dnl INPUT_MAIL_FILTER(`clamav', `S=local:/var/clamav/clamav.sock, F=,T=S:4m;R:4m')dnl define(`confINPUT_MAIL_FILTERS', `clamav')dnl Now see the changes in sendmail.cf Roberto - Original Message - Fro

[Clamav-users] problems using sendmail with clamav on rh7.3

2004-05-04 Thread Roberto Espinosa
add the followings lines to sendmail.mc and run again m4 define(_FFR_MILTER)dnl INPUT_MAIL_FILTER(`clamav', `S=local:/var/clamav/clamav.sock, F=, T=S:4m;R:4m')dnl define(`confINPUT_MAIL_FILTERS', `clamav')dnl Roberto - Original Message - From: "Steven Stern" <[EMAIL PROTEC

Re: [Clamav-users] problems compiling on rh7.3

2004-05-03 Thread Roberto Espinosa
Hi Te problems is that you don´t have strlcpy function. You can resolve it adding it to ./clamav-0.70/clamav-milter/clamav-milter.c size_t strlcpy(char *dst, const char *src, size_t dstsize) { if (strlen(src) < dstsize) { strcpy(dst,src); } else { strncpy(dst,src,dstsize-1); d

[Clamav-users] problems compiling on rh7.3

2004-05-03 Thread Roberto Espinosa
Hi Te problems is that you don´t have strlcpy function. You can resolve it adding it to ./clamav-0.70/clamav-milter/clamav-milter.c size_t strlcpy(char *dst, const char *src, size_t dstsize) { if (strlen(src) < dstsize) { strcpy(dst,src); } else { strncpy(dst,src,dstsize-