Re: [Clamav-users] reject=451 4.7.1 Please try again later
Joe Maimon wrote: Joe Maimon wrote: I have been having the same as well. I added some more verbosity into the syslog statement and got this logged write failure to clamd, nbytes: -1, quarantine_dir: (null), error: Bad file descriptor Any ideas? OK I think I know what the problem is. Large attachments. this got logged in my clamav syslog - I probaly turned on debugging or something ScanStream: Size exceeded (stopped at 10453272, max: 10485760 I also grabbed one of the continually tempfailed emails. 11M attachment. Just found StreamMaxLength 10M config option --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] reject=451 4.7.1 Please try again later
Joe Maimon wrote: I have been having the same as well. I added some more verbosity into the syslog statement and got this logged write failure to clamd, nbytes: -1, quarantine_dir: (null), error: Bad file descriptor Any ideas? OK I think I know what the problem is. Large attachments. this got logged in my clamav syslog - I probaly turned on debugging or something ScanStream: Size exceeded (stopped at 10453272, max: 10485760 I also grabbed one of the continually tempfailed emails. 11M attachment. See this from clamd/scanner.c Apparently the socket gets closed. If this is right, shouldnt this be changed to just throw the bytes out instead of closing the socket? Also the scantimeout needs to jive with the mail daemon timeouts. I will see if I can work on some fix to test this. (line 265) while((retval = poll_fd(acceptd, CL_DEFAULT_SCANTIMEOUT)) == 1) { bread = read(acceptd, buff, sizeof(buff)); if (bread <= 0) { break; } size += bread; if(maxsize && (size + sizeof(buff)) > maxsize) { shutdown(sockfd, 2); close(sockfd); close(acceptd); mdprintf(odesc, "Size exceeded ERROR\n"); logg("^ScanStream: Size exceeded (stopped at %d, max: %d)\n", size, maxsize); if(tmp) fclose(tmp); return -1; } if(write(tmpd, buff, bread) < 0) { shutdown(sockfd, 2); close(sockfd); close(acceptd); mdprintf(odesc, "Temporary file -> write ERROR\n"); logg("!ScanStream: Can't write to temporary file.\n"); if(tmp) fclose(tmp); return -1; } --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] clamav on early Linux 2.0 release
From: Antony Stone <[EMAIL PROTECTED]> Date: Sat, 27 Mar 2004 21:32:46 + > > I'm having some trouble compiling clamav on an old Linux 2.0 box > > Why are you still running 2.0? > > Even given your email username, :) > what is the purpose in running such an old > system (updated last month, for the first time in three years)? The problem is mainly a lack of time. Over the years I've developed my own customised mini-distribution based on 2.0. I simply don't have the time at the moment to rebuild the entire distribution from scratch (using 2.4 and glibc). Key advantages of the old distribution: (Much) smaller footprint in both RAM and HDD, better speed, and better compatibility with old hardware. ClamAV is one of the very few applications I cannot easily make to work on that platform. All other applications such as sendmail, procmail, openssh, samba, etc are the latest releases. Someone else already running the distribution would like simple "plug in" AV capability, instead of upgrading a server with frequent multi-month uptimes. Yes, they are very happy with it and don't want to change if possible. Can you help out with the problem itself? Thanks. Fred -- ___ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
[Clamav-users] LogSyslog question
I hope this isn't a stupid question, but ... I turned off LogFile, turned on LogSyslog, and restarted, but I can't find the startup messages in any of my logs. Where does LogSyslog, log to? This is a FreeBSD 5.2.1-RELEASE-p3 system, clamav 0.67 (the latest port). -ste --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] ClamAV on NetBSD 1.6.2
--On Saturday, March 27, 2004 5:43 PM -0500 Jeff Workman <[EMAIL PROTECTED]> wrote: I found where somebody had posted this same issue in the archives, but I didn't find an answer. What kind of magic do I have to work to get ClamAV to compile on NetBSD/i386 1.6.2?: To answer my own question and post, for the sake of anybody else who's having the same problems, here's what I had to do: ./configure --prefix=/usr/local --disable-cr --without-tcpwrappers (Apparently NetBSD 1.6.2's tcpwrappers lacks something that ClamAV expects it to have. Maybe in another lib? *shrug*..I don't have the linker error message handy) Then, I had to edit freshclam/Makefile per http://www.mail-archive.com/[EMAIL PROTECTED]/msg05256.htm l (Thanks Dave Holland!) Next, I had to "cd clamd; make cfgfile.o; cd ..; make; make install" Is there a configure option that I'm missing that I can use to avoid this in the future? Or is this a bug in the configure script? -J -- Jeff Workman | [EMAIL PROTECTED] | http://www.pimpworks.org --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] clamd fails, clamscan succeeds [SOLVED]
> I've set up amavisd-new, clamav and SA, feeding postfix as a realtime > scanner, on my FreeBSD 5.2.1-RELEASE-p3 system, from the latest ports. > Clamscan seems to be working, but not the primary clamd. > > This is what I'm seeing, during message receipt: > > Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Clam > Antivirus-clamd: Connecting to socket /var/run/clamav/clamd > > Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Clam > Antivirus-clamd: Sending CONTSCAN > /var/amavis/amavis-20040327T132927-46913/parts\n to UNIX socket > /var/run/clamav/clamd > > Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Clam > Antivirus-clamd result: /var/amavis/amavis-20040327T132927-46913/parts: > Can't access the file ERROR\n Forgot to run tell clamd to run as vscan (which amavisd-new runs as). After changing that, I also had to chown vscan:vscan /var/run/clamd. Works fine now. -ste --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] Freshclam timeout error
--On 26 March 2004 22:48 +0100 Tomasz Papszun <[EMAIL PROTECTED]> wrote: On Fri, 26 Mar 2004 at 16:21:10 +, Roger Fishwick wrote: I've check the archive at length but I don't think any of the other posts are the same problem. the error is freshclam wont, error in log is: ClamAV update process started at Fri Mar 26 15:01:37 2004 ERROR: Maximal time (1200 seconds) reached. I've installed clam from the latest RPMs on a mandrake 9.2 system: rpm -qa --last | grep -i clam clamav-db-0.70-3mdk Fri 26 Mar 2004 14:58:38 GMT clamd-0.70-3mdk Fri 26 Mar 2004 14:05:21 GMT clamav-0.70-3mdk Fri 26 Mar 2004 14:05:20 GMT libclamav1-0.70-3mdk Fri 26 Mar 2004 14:05:19 GMT [...] A proxy server between?... No, behind smoothwall, it's sister box has clamav 0.54 built on the machine working fine. This was an attempt to upgrade and move over to RPMs for the new supper box... Roger --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
[Clamav-users] ClamAV on NetBSD 1.6.2
I found where somebody had posted this same issue in the archives, but I didn't find an answer. What kind of magic do I have to work to get ClamAV to compile on NetBSD/i386 1.6.2?: My compile dies with gcc -g -O2 -o .libs/freshclam freshclam.o options.o manager.o notify.o ../clamscan/getopt.o ../clamscan/others.o -L/usr/local/lib -L/var/src/clamav-devel-20040327/libclamav /var/src/clamav-devel-20040327/libclamav/.libs/libclamav.so -lz -lbz2 /usr/local/lib/libgmp.so -Wl,--rpath -Wl,/usr/local/lib freshclam.o: In function `freshclam': /var/src/clamav-devel-20040327/freshclam/freshclam.c:120: undefined reference to `parsecfg' /var/src/clamav-devel-20040327/freshclam/freshclam.c:121: undefined reference to `parsecfg' /var/src/clamav-devel-20040327/freshclam/freshclam.c:132: undefined reference to `cfgopt' /var/src/clamav-devel-20040327/freshclam/freshclam.c:148: undefined reference to `cfgopt' /var/src/clamav-devel-20040327/freshclam/freshclam.c:168: undefined reference to `cfgopt' /var/src/clamav-devel-20040327/freshclam/freshclam.c:189: undefined reference to `cfgopt' /var/src/clamav-devel-20040327/freshclam/freshclam.c:200: undefined reference to `cfgopt' freshclam.o:/var/src/clamav-devel-20040327/freshclam/freshclam.c:210: more undefined references to `cfgopt' follow *** Error code 1 Stop. make: stopped in /var/src/clamav-devel-20040327/freshclam *** Error code 1 Stop. make: stopped in /var/src/clamav-devel-20040327 *** Error code 1 Stop. make: stopped in /var/src/clamav-devel-20040327 TIA, -J -- Jeff Workman | [EMAIL PROTECTED] | http://www.pimpworks.org --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] clamav on early Linux 2.0 release
On Saturday 27 March 2004 8:50 pm, Fred Flintstone wrote: > I'm having some trouble compiling clamav on an old Linux 2.0 box Why are you still running 2.0? Even given your email username, what is the purpose in running such an old system (updated last month, for the first time in three years)? Antony -- Anything that improbable is effectively impossible. - Murray Gell-Mann, Nobel Prizewinner in Physics Please reply to the list; please don't CC me. --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
[Clamav-users] clamd fails, clamscan succeeds
I've set up amavisd-new, clamav and SA, feeding postfix as a realtime scanner, on my FreeBSD 5.2.1-RELEASE-p3 system, from the latest ports. Clamscan seems to be working, but not the primary clamd. This is what I'm seeing, during message receipt: Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Clam Antivirus-clamd: Connecting to socket /var/run/clamav/clamd Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Clam Antivirus-clamd: Sending CONTSCAN /var/amavis/amavis-20040327T132927-46913/parts\n to UNIX socket /var/run/clamav/clamd Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Clam Antivirus-clamd result: /var/amavis/amavis-20040327T132927-46913/parts: Can't access the file ERROR\n Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Clam Antivirus-clamd FAILED - unknown status: /var/amavis/amavis-20040327T132927-46913/parts: Can't access the file ERROR\n Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) WARN: all primary virus scanners failed, considering backups Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) Using Clam Antivirus - clamscan: /usr/local/bin/clamscan --stdout --disable-summary -r /var/amavis/amavis-20040327T132927-46913/parts Mar 27 13:29:28 peter.smxy.org amavisd[46913]: (46913-01) run_command: [46985] /usr/local/bin/clamscan --stdout --disable-summary -r /var/amavis/amavis-20040327T132927-46913/parts &1 Mar 27 13:29:29 peter.smxy.org amavisd[46913]: (46913-01) run_av: /usr/local/bin/clamscan status=0 (0 ),/var/amavis/amavis-20040327T132927-46913/parts/part-1: OK Mar 27 13:29:29 peter.smxy.org amavisd[46913]: (46913-01) run_av: clean Can someone point me in the right direction to fix this, or tell me what other information you need me to provide, please. TIA. :) -ste --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
[Clamav-users] clamav on early Linux 2.0 release
I'm having some trouble compiling clamav on an old Linux 2.0 box (complete with gcc 2.95.3 and libc5). Searching the clamav archives yields no information on this particular problem. The requisite zlib 1.2.1 is installed on the system, as is bzip2 1.0.2. The machine can build and install clamav-0.24 cleanly. But it always fails on later versions such as 0.54, 0.68 and 0.70-rc. The output for an 0.68 attempt follows. Any advice or suggestion (apart from the obvious of "move to a newer Linux version", which is not possible) will be greatly appreciated. Thanks. Fred *** Making all in libclamav make[2]: Entering directory `/root/clam/clamav-0.68/libclamav' source='scanners.c' object='scanners.lo' libtool=yes \ depfile='.deps/scanners.Plo' tmpdepfile='.deps/scanners.TPlo' \ depmode=gcc /bin/sh ../depcomp \ /bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I./zziplib -g -O2 -c -o scanners.lo `test -f 'scanners.c' || echo './'`scanners.c rm -f .libs/scanners.lo gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I./zziplib -g -O2 -c scanners.c -Wp,-MD,.deps/scanners.TPlo -fPIC -DPIC -o .libs/scanners.lo In file included from zziplib/zzip.h:23, from scanners.c:46: zziplib/zzip-stdint.h:21: conflicting types for `int8_t' /usr/include/sys/bitypes.h:80: previous declaration of `int8_t' zziplib/zzip-stdint.h:26: warning: redefinition of `int16_t' /usr/include/sys/bitypes.h:82: warning: `int16_t' previously declared here zziplib/zzip-stdint.h:33: warning: redefinition of `int32_t' /usr/include/sys/bitypes.h:84: warning: `int32_t' previously declared here make[2]: *** [scanners.lo] Error 1 make[2]: Leaving directory `/root/clam/clamav-0.68/libclamav' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/root/clam/clamav-0.68' make: *** [all] Error 2 -- ___ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
RE: [Clamav-users] Freshclamd not updating?
Ok, I see where I goofed up.. had checks set to 2 and not 12... Thinking that 2 meant every two hours. Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Sent: Saturday, March 27, 2004 12:58 PM To: [EMAIL PROTECTED] Subject: RE: [Clamav-users] Freshclamd not updating? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Galactic > > Just installed clamav 70-rc and configured freshclam to run > as a daemon and update every 2 hours logging to > /var/log/freshclam.log it has the owner of clamav and group > of root. Permissions are 600 on the log file. I check the log > file and I only see the times that I've manually kicked off > the freshclam. Every 2 hours (Checks 12), or twice a day (Checks 2)? What is your value of Checks in freshclam.conf? PLEASE - keep list traffic on the list. Email sent directly to me may be ignored utterly. -- Rob | What part of "no" was it you didn't understand? --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
RE: [Clamav-users] Freshclamd not updating?
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Galactic > > Just installed clamav 70-rc and configured freshclam to run > as a daemon and update every 2 hours logging to > /var/log/freshclam.log it has the owner of clamav and group > of root. Permissions are 600 on the log file. I check the log > file and I only see the times that I've manually kicked off > the freshclam. Every 2 hours (Checks 12), or twice a day (Checks 2)? What is your value of Checks in freshclam.conf? PLEASE - keep list traffic on the list. Email sent directly to me may be ignored utterly. -- Rob | What part of "no" was it you didn't understand? --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
[Clamav-users] Freshclamd not updating?
Hello, Just installed clamav 70-rc and configured freshclam to run as a daemon and update every 2 hours logging to /var/log/freshclam.log it has the owner of clamav and group of root. Permissions are 600 on the log file. I check the log file and I only see the times that I’ve manually kicked off the freshclam. What else should I look at to see what could be causing this to not function as intended. I’m running RHE3 Thanks Franklyn Halamka The Eternally Confused.
Re: [Clamav-users] clam not fresh
Kevin T. said: > On Fri, 26 Mar 2004, Tomasz Papszun wrote: > >> On Thu, 25 Mar 2004 at 16:18:38 -0800, Brian W. Antoine wrote: >> > >> > I'm updating from clamav.elektrapro.com and starting a short >> time ago it >> > now wants >> > to update viruses.db, but the checksum fails after the download. >> The >> > mirror at ozforces >> > does the same thing. >> > >> > This isn't the issue that started this thread, but it appears >> to be a >> > good place >> > to mention that something else is going wrong with the downloads >> also. >> >> You use old version of ClamAV. Please upgrade. >> > Actually, I'm running ClamAV version 0.70-rc and getting the same > message. > Anyone else having this issue? > Not me. 0.70-rc seems pretty stable here. -- Bob Greene --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] clam not fresh
Actually, I'm running ClamAV version 0.70-rc and getting the same message. Anyone else having this issue? On Fri, 26 Mar 2004, Tomasz Papszun wrote: > On Thu, 25 Mar 2004 at 16:18:38 -0800, Brian W. Antoine wrote: > > > > I'm updating from clamav.elektrapro.com and starting a short time ago it > > now wants > > to update viruses.db, but the checksum fails after the download. The > > mirror at ozforces > > does the same thing. > > > > This isn't the issue that started this thread, but it appears to be a > > good place > > to mention that something else is going wrong with the downloads also. > > You use old version of ClamAV. Please upgrade. > > -- > Tomasz Papszun SysAdm @ TP S.A. Lodz, Poland | And it's only > [EMAIL PROTECTED] http://www.lodz.tpsa.pl/ | ones and zeros. > [EMAIL PROTECTED] http://www.ClamAV.net/ A GPL virus scanner > > > --- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > ___ > Clamav-users mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/clamav-users > --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] Re: Yet another TESTVIRUS.org result !!
Your's did better than mine did, 12, 19-25 all slipped through mine. I'm running 0.70-rc, any advice on getting these detected? On Fri, 26 Mar 2004, Bart Silverstrim wrote: > > On Mar 26, 2004, at 2:35 PM, Trog wrote: > > > On Fri, 2004-03-26 at 18:35, Bart Silverstrim wrote: > > > >> Hmm...when I just tested it (postfix, clamav, amavisd-new) tests 8, > >> 12, > >> 24, and 25 got through. Am I missing something in my config? > >> > >> How worried should I be about those viruses getting through? :-/ > > > > #8 was blocked with current CVS (didn't test other versions) > > #12 is blocked if you tell clamscan to detect password protected files > > > > That (#12) is only in the CVS version as well, no? > > I've been waiting until the latest version is in the ports tree > (FreeBSD 4.9) so I wouldn't end up with a mix of ports and tarballed > apps on the server, so latest updates could be taken care of via > portupgrade... :-/ > > > #24 and #25 don't contain any viruses, so it's not surprising they > > aren't detected. > > This was supposed to test a potential infection vector? > > > > --- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > ___ > Clamav-users mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/clamav-users > --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users
Re: [Clamav-users] Re: Yet another TESTVIRUS.org result !!
Bart Silverstrim wrote: #24 and #25 don't contain any viruses, so it's not surprising they aren't detected. This was supposed to test a potential infection vector? Yes, and there's software to handle those, like MailScanner I use, Amavis and MIMEdefang does it too I guess. Please don't ask Clam to do their work. What's next, it's going to be a firewall and an intrusion detection system all in one? -- /Peter Bonivart --Unix lovers do it in the Sun Sun Fire V210, Solaris 9, Sendmail 8.12.10, MailScanner 4.25-14, SpamAssassin 2.63 + DCC 1.2.30, ClamAV 0.67 + GMP 4.1.2, MailStats 0.25 --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click ___ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users