[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
our log show more parameters to gcc? BTW try to use the installed gcc (2.95.2), if you use the newer one you'll have to install it later so that libgcc is somewhere permanent. Perhaps starting with no environment variables set will help. - -- René Berber -BEGIN PGP SIGNATURE- Vers

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
t to start with a minimal set of well defined environment variables (PATH, CC, CFLAGS, LDFLAGS, nothing else), run configure, see any complaints there, add the required parameters to configure (the defaults install everything under /usr/local, I use --sysconfdir=/etc --enable-id-check --without-l

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
;./configure" followed by "make"? What's the exact gcc line before the error message? it's important that it looks like the one in conf.log, same order of -I's. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunde

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
riables except PATH (i.e. no CLFAGS, no LDFLAGS), does configure work as before? does make work? - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iEYEARECAAYFAkPqSe0ACgkQL3NNweKTRgyG

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
in `echo $PATH` for bash). The one you must be using for configure to find gcc, or do you have CC defined? - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iEYEARECAAYFAkPqW0oACgkQL3NNweKTRgxmggC

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
ou can use "-D_XOPEN_SOURCE" but if configure didn't need that I don't see the point. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iEYEARECAAYFAkPqfxMACgkQL3NNweKTRgzQIwCePYlGD

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
truct hostent h; char *name; char buffer[10]; int h_errno; hp = gethostbyname_r(name, &h, buffer, 10, &h_errno); ; return 0; } I would say that is very explicit use of h_errno. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird -

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
='-D_XOPEN_SOURCE' is used. OK Andrew, you'll have to repeat the build with: CFLAGS="-D_XOPEN_SOURCE" ./configure make - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-08 Thread René Berber
to "CFLAGS". I don't know > about 11.0; I haven't found a system to look at yet. So its: CFLAGS="-D_XOPEN_SOURCE_EXTENDED" ./configure make that way configure will record the flags used to the makefiles. - -- René Berber -BEGIN PGP SIGNATURE--

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-09 Thread René Berber
ow the shared libraries are set up in the resulting executables. But let's do one thing at a time, just configure and make. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iEYEARECAAYFAkPrYmsA

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-09 Thread René Berber
gt; ntohl (code) > collect2: ld returned 1 exit status OK, this is normal, we are missing some libraries in the link command. Easy to correct: ./configure CFLAGS="-D_XOPEN+SOURCE_EXTENDED" LDFLAGS="-lsocket -lnls" Let's see what jumps next ;-) -

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-09 Thread René Berber
paste. Sorry. Correction: ./configure CFLAGS="-D_XOPEN_SOURCE_EXTENDED" LDFLAGS="-lsocket -lnls" - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iEYEARECAAYFAkPriL

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-09 Thread René Berber
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 René Berber wrote: > Kaplan, Andrew H. wrote: > > >>>> ./configure CFLAGS="-D_XOPEN+SOURCE_EXTENDED" LDFLAGS="-lsocket -lnls" > > --^ > Oops! The error her

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-09 Thread René Berber
the LDFLAGS need a correction, just delete the -lsocket part, the log shows that the socket library doesn't exist. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird - http://en

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-09 Thread René Berber
. Perhaps just doing a "man ntohl" will tell, usually in the first page of the manual an example of how to compile is shown (under SYNOPSIS), the part we need is the "-l..." parameter which should be set in LDFLAGS. I was using the Solaris way of doing this. - -- René Berber

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-09 Thread René Berber
ndif #endif /* _XOPEN_SOURCE_EXTENDED */ If it were like this we would not have a problem, so let's see how is defined. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (Cygwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iEYEARE

[Clamav-users] Re: Problem Upgrading ClamAV on HP-UX 10.20

2006-02-28 Thread René Berber
result will not work as intended. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.1 (Cygwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iEYEARECAAYFAkQEt1cACgkQL3NNweKTRgy+PgCg62bZMLtkL8Ir9eJlICRcm/V3 EtIAn21b4wkuChVDMICjBtUJzZGsm

[Clamav-users] Re: [Fwd: Re: custom signatures not working]

2006-02-28 Thread René Berber
be reported to the maintainer. I can report it if you want (even help fixing it), just give me a test case that shows that it is broken. There are other distributions of clamav "based" on Cygwin or MingW but with their own changes, those don't count, they are not distributed by

[Clamav-users] Re: [Fwd: Re: custom signatures not working]

2006-03-04 Thread René Berber
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tomasz Kojm wrote: > On Tue, 28 Feb 2006 14:56:59 -0600 > René Berber <[EMAIL PROTECTED]> wrote: > >> Tomasz Kojm wrote: >> [snip] >>> Cygwin compilations are known to be seriously broken. >> Where does tha

[Clamav-users] Re: SuSE10.0 installation, config error: "no acceptable C compiler found in $PATH"

2006-03-23 Thread René Berber
ich is not the compiler just a part of one of the compilers that comes with gcc, and it is under /usr/lib/gcc/i585-suse-linux/... then you should have a /usr/bin/gcc; that's the compiler. If you don't have it, then look again with YaST and install it. What you show above (cpp, libgcc, ...) a

[Clamav-users] Re: SuSE10.0 installation, config error: "no acceptable C compiler found in $PATH"

2006-03-24 Thread René Berber
ained by Joe Benden. You can download them at http://www.ispservices.com/clamav.html"; You'll need the 2 packages that are listed, clamav-0.88-0.1 and clamav-db-0.88-0.1, then do a configuration as described in the manual. HTH. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuP

[Clamav-users] Re: SuSE10.0 installation, config error: "no acceptable C compiler found in $PATH"

2006-03-24 Thread René Berber
I didn't see the src package so we must be looking at different places in Reinhard's repository. Do you see the projects/clamav-0.88/10.0-i386 path? Inside there are only two binaries. >> HTH. > What does this mean? It means "Hope This Helps" - -- René Berber - -- R

[Clamav-users] Re: SuSE10.0 installation, config error: "no acceptable C compiler found in $PATH"

2006-03-24 Thread René Berber
s, the one that corresponds to your computer architecture (a.k.a. processor) and Suse version, so if you have a regular PC you choose the 10.0-i386 (that means Suse 10.0 with Intel x86 family processor, which includes AMD processors, the others are for PowerPC like the Mac, and the 64-bit ve

[Clamav-users] Re: SuSE10.0 installation, config error: "no acceptable C compiler found in $PATH"

2006-03-25 Thread René Berber
attempting to install (which is why my list became so long)." > > -- -- > > Do you know if this information is appropriate for SuSE10.0? Could work, I'm not sure, you could try it and if doesn't work then uninstall it. I wouldn't install the whole thing, the dependen

[Clamav-users] Re: SuSE10.0 installation, config error: "no acceptable C compiler found in $PATH"

2006-03-25 Thread René Berber
> gain more information of how the parts of a complex process are sequencing > together. The lesson I get is YaST is not as good as "they" claim. I've had similar problems with installation software in all Linux distributions I

[Clamav-users] Re: Question on SUNWbzip and SUNWbzipx on Solaris 10

2006-03-27 Thread René Berber
lib" and see for yourself. I don't know what the dependency on the clamav package you were originally installing is for, an obsolete dependency perhaps? ... just checked Solaris 9 and it is different, the zlib package doesn't include 64-bit libraries. - -- René Berber -BEGIN PGP SIG

[Clamav-users] Re: Question on SUNWbzip and SUNWbzipx on Solaris 10

2006-03-27 Thread René Berber
inary packages of ClamAV are for Solaris 9 SPARC 64-bit." So, don't install those on Solaris 10. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.2 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEKDvUL3NNweKTRgwRAnPRAJsGUGpIQq4bV3U

[Clamav-users] Re: Question on SUNWbzip and SUNWbzipx on Solaris 10

2006-03-27 Thread René Berber
UNWbzipx package? The SUNWbzipx package doesn't exist for Solaris 10 or Nevada (version 11). The packages from sunfreeware and blastwave don't include the 64-bit library. So, your only option seems to be compile it yourself (and put the libraries in their proper place; that'

[Clamav-users] Re: Error running Clamd

2006-04-18 Thread René Berber
onfig file /usr/local/etc/clamd.conf. > ERROR: Can't open/parse the config file /usr/local/etc/clamd.conf Just to complement the other responses, it could be a permission problem: the daemon runs as a user that perhaps doesn't have read permission on the file mentioned in the error me

[Clamav-users] Re: Logging not working for scans

2006-04-20 Thread René Berber
amd.log. > > ClamAV is version 88.1 > > Permissions on clamd.log are 777. > > Any suggestions? Use clamdscan. The log is updated by clamd which is not used by clamscan. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.2 (Cygwin) Comment:

[Clamav-users] Re: Error while loading shared libraries

2006-05-02 Thread René Berber
ies it > should tell you what is found and what is not found so far as libraries are > concerned. Using ldd as any other user may not provide accurate results > owning to differing environments. The "clamav binaries" are clamd, clamdscan, ... Do a "ldd clamd". - -- Ren

[Clamav-users] Re: scanning

2006-05-05 Thread René Berber
allow files with that extension. > I don’t know if clamav recognized the virus form an outgoing e-mail. No, clamav has nothing to do with that message. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8D

[Clamav-users] Feature request for freshclam: settable timeout

2006-05-08 Thread René Berber
ate than having freshclam running for so long. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD4DBQFEX6NgL3NNweKTRgwRAr25AJoDqNLSCxcoVIci1eRvME/PPgnCbgCVFv4C AgxggXTg56Yr+Tk05K/f+w== =AWsG -EN

[Clamav-users] Re: Undetected

2006-05-29 Thread René Berber
ED]:~/VIRUSES]$ clamscan --version > ClamAV 0.88.2/1499/Mon May 29 21:35:17 2006 > > What can I be doing wrong? Sending links to viruses to the list. Not trying the online scanner tool shown at the ClamAV home page. Not reporting the virus if it really is not detected. - -- René Berber -

[Clamav-users] Re: Undetected

2006-05-29 Thread René Berber
s of 2006-05-22 22:26 +1. Did you try to report it? Did the form said it was known? If it is not detected then it should be reported again. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org i

[Clamav-users] Re: Newbee Question

2006-05-30 Thread René Berber
do what you configure it to do, read man clamav-milter. > so it is the responsibility > of the sysadmin (myself here) to provide a script to cut out infected > messages? > > what i mean is, do i have to provide a script that will either eliminate or > quarantine the infected m

[Clamav-users] Re: Whats this: -> stream: Unable to open file or directory ERROR

2006-06-01 Thread René Berber
so your server may have been swapping because of other problems... better check out the system's log too. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEfxkYL3NNweKTRgwRAl9qAKCe0hh4MxFEBf/DrpmMW+GUHj

[Clamav-users] Re: LibClamAV Error cl_loaddb

2006-06-27 Thread René Berber
ong path spec. To correct the last two possibilities you should uncomment the option and put it right: DatabaseDirectory /usr/share/clamav - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Cygwin) Comment: Using GnuPG with Mozilla - http://e

[Clamav-users] Re: Freshclam error

2006-07-11 Thread René Berber
means it hasn't been configured correctly. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEs+D7L3NNweKTRgwRAsDDAKCRpjclPXg5/2bRHgRdpLnA+DCaSACgyHal W+DRBKj+wbWGbZo7m5p2/UE= =Ir

[Clamav-users] Re: clamav-0.88.3

2006-07-13 Thread René Berber
amAV-Test-File FOUND - --- SCAN SUMMARY --- Known viruses: 63025 Engine version: 0.88.3 Scanned directories: 0 Scanned files: 1 Infected files: 1 Data scanned: 8.36 MB Time: 16.250 sec (0 m 16 s) Which is normal. If you get something else then watch out. - -- René Berber -BEGIN PG

[Clamav-users] Re: Only phishing getting picked up in 0.88.3

2006-07-16 Thread René Berber
/vispan > > MailScanner is catching all the executables I thought > clamav was supose to catch. No, it's not only phishing what gets caught. The number of virus arriving is very low but I still see an occasional Worm.VB-9 (only one this week on a low traffic server). - -

[Clamav-users] Re: Can not connect to clamd

2006-07-19 Thread René Berber
ns. The message you got means that freshclam could not make a connection on the TCP socket, it could be that clamd is not running or if it is running it is not listening to that port or type of socket. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Cygwin) Comment

[Clamav-users] Re: Freshclam on RedHat 4

2006-08-04 Thread René Berber
thing to do with Solaris. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE058LL3NNweKTRgwRAtf7AJ9cYQ8O6jqr8vcAIcKxZqb91/MwXgCeMkZ3 c55UJ9vznzn0bxRT5L+6yJI= =UhFI -END PG

[Clamav-users] Re: Can someone help with clamav logging issue?

2006-08-04 Thread René Berber
to scan mail, depending on what controls the scan (i.e. MailScanner can use a perl module or clamscan) is the location of those parameters. > Any help or advice would be most appreciated! - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG

[Clamav-users] Re: Freshclam Timeout Patch

2006-08-04 Thread René Berber
t not the constant change of DNS configurations that these guys (whoever supports this region) do. Thanks again. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE08KQL3NNweKTRgwRApHxAJ9Oj3irUgbBUtR

[Clamav-users] Re: Freshclam Timeout Patch

2006-08-05 Thread René Berber
better, I just remember the constant change of servers they did a while ago: the DNS record pointed to a server that was disabled, then to another, then back to the first, some of them were the real slow ones. Regards. - -- René Berber -BEGIN PGP SIGNATURE- Version:

[Clamav-users] Re: Commercial Scanner ClamAV Timed Out Error Message

2006-08-07 Thread René Berber
or you modified MS to use clamdscan. In the most usual situation the perl module is used and a few parameters can be set in MS configuration that can affect those timeouts. The obvious one is the explicit timeout setting, but there are others that produce the same error message, like recursion lev

[Clamav-users] Re: Commercial Scanner ClamAV Timed Out Error Message

2006-08-09 Thread René Berber
B zip probably will take close to the 60 sec limit between the unziping and scanning and it depends also in the machine load). - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE2jcEL3NNweKTRgwRAv68AK

[Clamav-users] Re: Milter Woes...

2006-08-10 Thread René Berber
We recommend setting F=T." I no instances should sendmail have stopped, so you may have other problems. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE27

[Clamav-users] Re: ClamAV & Squid

2006-08-11 Thread René Berber
ng > anything. If you are using clamd you have the option of logging clean files, just look at the clamd.conf file. Another thing I would do different is not use Eicar as a test, just use the whole clamav-0.88.4.tar.gz file and all the test files should trigger what you want to see. - -- René Berb

[Clamav-users] Re: Freshclam won't update

2006-08-21 Thread René Berber
ut and retry. > I've had freshclam working perfectly for a number of years - this only > started at about the time I upgraded clamav to 0.88.4. Strange, something else must have changed, perhaps you used a proxy and forgot to add it to the configuration file. - -- René Berb

[Clamav-users] Re: Freshclam won't update

2006-08-21 Thread René Berber
- how do I verify the files > - can I download md5 etc signatures; and how do I get the clamd and > clamav-milter daemon to reload the database? I use > /var/run/clamav/clamd.sock as a socket. What's the output of running: 1. freshclam -v and if that didn't update the datab

[Clamav-users] Re: Freshclam won't update

2006-08-21 Thread René Berber
"Mirrors are not fully..." message is output when the downloaded DB version is less than the one expected from the DNS query, then the downloaded file is deleted. With the above test you should see if the mirror is really not synchronized. - -- René Berber -BEGIN PGP SIGNA

[Clamav-users] Re: Freshclam won't update

2006-08-21 Thread René Berber
the version is the old one?? Not too old, it's this morning (for me) version. But remember that freshclam was complaining about main.cvd, try that one. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozde

[Clamav-users] Re: Freshclam won't update

2006-08-21 Thread René Berber
on 39 is not the current version, look at the date June 9, the current is version 40 built August 16 (just a day before you found the problem, so that's it). Please report your region mirror to Luca Gibelli (luca AT clamav DOT net), in the meantime you could use another mirror, i.e. db.us.cl

[Clamav-users] Re: Freshclam won't update

2006-08-22 Thread René Berber
n until it reaches database.mirror.net -- why didn't this happen in your case? probably returned the mirror you already had used), which was the old way used with freshclam. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG with Mozilla - h

[Clamav-users] Re: Mirror Problems

2006-08-23 Thread René Berber
x27;t updated one of the DB files since before Aug. 17; that's why more than one fall back works better. HTH. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8D

[Clamav-users] Re: server type (local/TCP) error found in /tmp/clamd.log

2006-08-25 Thread René Berber
lamd.conf. Only > have TCPSocket & TCPAddr. LogFileMaxSize has been set to 0, ERROR: Please > select server type (local/TCP) still appeared. You must choose either: LocalSocket /tmp/clamd #TCPSocket 3310 or #LocalSocket /tmp/clamd TCPSocket 3310 You can't have both uncommented o

[Clamav-users] Re: Freshclam won't update

2006-09-01 Thread René Berber
ete those. > -rw-r--r-- 1 clamav clamav363781 Sep 1 15:52 daily.cvd > -rw-r--r-- 1 clamav clamav 5858804 Aug 17 07:25 main.cvd [snip] If your read the other messages on this thread, there was a server (in Australia) that somehow skipped the Aug. 16 update and really was not sync

[Clamav-users] Re: Clamdscan instead of Clamscan

2006-10-23 Thread René Berber
ad is the problem, it is not from clamscan which should not even be running... do you see it in the process list? On the other hand MS can be tunned to the load, and usually Spamassassin is the one that causes the load when used without care (i.e. too many tests). - -- René Berber -BEGIN PGP SIG

[Clamav-users] Re: Filtering http/ftp dowloads with clamav

2006-11-03 Thread René Berber
transactions ? http://clamav.net/3rdparty.html#webftp - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFS983L3NNweKTRgwRAo7lAJ4+WX1j7wJ1r0y8i4Rvgn3sS5FLDACgkZP5 PWCDZJk1Y1KYGxnKTELtmAA= =Ioh9 -END P

[Clamav-users] Re: don't understand technical lingo for SECURITY WARNING: NO SUPPORT FOR DIGITAL SIGNATURES

2006-11-07 Thread René Berber
ompiled without GMP support it will display ?SECURITY WARNING: NO SUPPORT FOR DIGITAL SIGNATURES? on every update. You can download GNU MP at http://www.swox.com/gmp/ " Check that it's not already installed (and use LDFLAGS='-L') or install it from whatever source OS-X prov

[Clamav-users] Re: Digital signatures for virus database files

2006-11-22 Thread René Berber
...", and option -i or --info does "Print a CVD information and verify MD5 and a digital signature." How it does it? I don't know, I haven't checked, but no mention is made that it may need an Internet connection. To be sure you'll have to try it or perhaps look at the

[Clamav-users] Re: clamscan sped

2006-11-26 Thread René Berber
md, why not use clamdscan instead of clamscan, it's > much faster? No, it's not faster. If you run clamscan or clamdscan once on a large number of files (as shown above) the execution speed is about the same. If you run them many times, say once per file, then what you said applies.

[Clamav-users] Re: Compiling Clamav-0.9RC2 on Solaris Intel

2006-11-27 Thread René Berber
led then you should specify the database location in both configuration files (clamd.conf and freshclam.conf) since you chose not to use the configuration parameter for building. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://

[Clamav-users] Re: clamd "exit error code 71"

2006-11-27 Thread René Berber
ry (malloc). > This is not the case for us, since we are sure > the permissions have not changed and are correct upon rechecking them. Has > anyone else ran into this issue? Thanks. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin)

[Clamav-users] Re: Error (Cannot connect to 'localhost:3310': IO::Socket::INET: connect: Connection refused )

2006-12-06 Thread René Berber
loser eye on things, as well... I was going to suggest using `sigtool -i ...` to check the downloaded database in your scripts but it will only work with 0.88.6 and below, with 0.90rc2 it doesn't work with any of the .ndb files, only with .cvd fil

[Clamav-users] Re: Error (Cannot connect to 'localhost:3310': IO::Socket::INET: connect: Connection refused )

2006-12-09 Thread René Berber
sed versions of clamav, it doesn't work with 0.90rc2 (i.e. only .cvd files can be checked, not .ndb). - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFe1LKL3NNweKTRgwRAlNiAKCHcMrC+4n5rJq81Tx/yUV

[Clamav-users] Re: Newbie-inquiry

2006-12-14 Thread René Berber
u already tried to detect/eliminate the problem, and anything else you consider relevant. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFgd2CL3NNweKTRgwRAjvCAKCckvir2NaTwjha7GImySpXnukXNgCfa

[Clamav-users] Re: Newbie-inquiry

2006-12-15 Thread René Berber
megs for example) > as virus are always small to spread quicker - That's a good idea. EximConfig could be a long term option, even if you only need to change the configuration, for an example look at : http://duncanthrax.net/exiscan-acl/exiscan-acl-examples.txt - -- René Berber -BEGIN PG

[Clamav-users] Re: Newbie-inquiry

2006-12-15 Thread René Berber
.. this could be a problem with Exim, it's not clear so far. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFgvlhL3NNweKTRgwRAgPlAJ0dT1Pr+xZcJOYRZ/9xniM1L3EAHwCg9ZyP a61cqG8FArzB

[Clamav-users] Re: Newbie-inquiry

2006-12-15 Thread René Berber
ed it to; > > # Log time with each message. > # Default: no > LogTime > > and it worked- Yes, sorry for my mistake, I'm using version 0.90rc2 and you are using 0.88.7, the configuration file syntax is different. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v

[Clamav-users] Re: compiled clamav-0.88.7 on a Sun Fire x4100 (AMD 64 bit CPU) running solaris 10

2007-01-05 Thread René Berber
s, gmp does not respect that and puts the 64-bit library alongside the 32-bit ones (I complained several years back, in fact I wanted to have both library versions built without having to do it by hand, obviously no changes have been made). - -- René Berber -BEGIN PGP SIGNATURE- V

[Clamav-users] Re: clamav is not returning virus name to exim

2007-01-26 Thread René Berber
pam.Gen041.Sanesecurity.06121902). The only real difference is that "*/defer_ok", but I don't know what it does or if that is the problem. Could be something else, like restarting the server after changing the configuration, or that I'm using Exim 4.63 . - -- René Berber -BEGIN P

[Clamav-users] Re: 0.90rc3 from Sourceforge: How do I use the .sig file?

2007-02-02 Thread René Berber
r random.sks.keyserver.penguin.de --verify ... - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFw7cYL3NNweKTRgwRAnX0AJ9wmgnU6YiS8Sv1XnCbEiuzp3o5lwCfRtBr Ka05MAjTiwWPXNYSEtw5

[Clamav-users] Re: 0.90rc3 from Sourceforge: How do I use the .sig file?

2007-02-02 Thread René Berber
" ... so it looks like your gpg is not working right, perhaps it is old or something in the configuration, I'm not sure what is the problem. You may try using another server, or adding the protocol to the server name, as in "hkp://random.sks.keyserver.penguin.de". - -- René Berber --

[Clamav-users] Re: problem compiling clamav-0.90rc3 on Sparc Solaris 10U3

2007-02-04 Thread René Berber
ile >0x32ec > /usr/local/lib/libbz2.a(decompress.o) [snip] Big problem, -shared is used but only libbz2.a is found... the above link command is for using shared libraries only, you'll have to change it if you really want to use static libs. Get rid of that

[Clamav-users] Re: problem compiling clamav-0.90rc3 on Sparc Solaris 10U3

2007-02-12 Thread René Berber
t; /lib/libuutil.so.1 libm.so.2 => /lib/libm.so.2 This proves that I was wrong in my previous message, libbz2 is not in /usr/sfw/lib, it is in /usr/lib. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://

[Clamav-users] Re: problem compiling clamav-0.90rc3 on Sparc Solaris 10U3

2007-02-13 Thread René Berber
/libbz2.so.1.0.3 /usr/local/lib/libbz2.so Problem solved, executing `make` again finished this time w/o problem. HTH but in Solaris 10 there shouldn't be a problem with the system installed libraries. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using

[Clamav-users] Perl module Mail::ClamAV not compatible with ver.0.90

2007-02-13 Thread René Berber
for users of MailScanner, without a re-build MS spins creating processes and killing them with no mail being scanned. I guess there is the option of using clamscan (or clamdscan with patches to MS). - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG wi

[Clamav-users] Re: Perl module Mail::ClamAV not compatible with ver.0.90

2007-02-13 Thread René Berber
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dennis Peterson wrote: > René Berber wrote: > >> Is anybody working on upgrading perl module Mail::ClamAV? >> >> Current version 0.17 does not build under clamav version 0.90, there's >> at least >> 2 d

[Clamav-users] Re: GMP MP2, digital signature FreeBSD 6.0

2007-02-14 Thread René Berber
With the previous version of clamav > (clamav-0.88.7 and older) a digital signature works normally. The new version does things differently in the configuration, it is more general and it has a lot of new tests (which do nothing useful, like looking for Fortran) and do miss things like gmp which worked

[Clamav-users] Re: PING

2007-02-15 Thread René Berber
ver has been a command, it is part of the protocol used to communicate with clamd through a socket. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF1PjjL3NNweKTRgwRAgwSAKCzbZ/dDnlqX2iOj3jvImhbq8QJ

[Clamav-users] Re: ClamAV 0.88.7_1 dies

2007-02-24 Thread René Berber
<>, > [EMAIL PROTECTED], status=CLAMAV-ERROR > > I have no clue what it means, there is nothing in the logs to give any > usefull information. This is really eating a lot of my time. It seems that your configuration of clamd and clamsmtpd differ, one is probably using a TCP socket, the

[Clamav-users] Re: ClamAV 0.88.7_1 dies

2007-02-24 Thread René Berber
lar situation with TCP, which you say is not being used. - -- René Berber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF4JeiL3NNweKTRgwRAkkbAKDSQlDeivEU2P3k5FaAf4hKXE8weQCg9CRZ cprjHgXBaibA8xNZ9/JTuA4= =v3Bh

[Clamav-users] Re: 0.90.1 - clamd died on Solaris 9

2007-03-07 Thread René Berber
4.0, and MailScanner 4.58.9 (modified to use clamdscan), no problem with all those packages working together. Your solution is a bit drastic, why not use clamdwatch or clamdmon from the contrib directory. I just stopped using clamdwatch after 2 or 3 years of monitoring clamd and never have to restart

<    1   2   3