Sasa Stupar wanted us to know:

>Guys, how do you make this stats? I am running Sendmail 8.13.1 on FC3
>with clamav-milter. Is there some settings on sendmail or Clamav?

cat /var/log/clamav/clamd.log | showviruses.pl

The showviruses.pl is attached to this email.  It's very very simple, no
error checking, and no command line options.  It could be added very
easily though.
-- 
Regards...              Todd
OS X: We've been fighting the "It's a mac" syndrome with upper management
for  years  now.  Lately  we've  taken  to  just  referring  to  new  mac 
installations  as  "Unix"  installations  when  presenting proposals  and 
updates.  For some reason, they have no problem with that.          -- /.
Linux kernel 2.6.8.1-12mdkenterprise   3 users,  load average: 0.04, 0.11, 0.13
#!/usr/bin/perl

use strict;
my %virus;

while (<>) {
        if ( m#^.*\s([^\s]+)\sFOUND$# ) {
                $virus{$1}++;
        }
}

foreach (sort { $virus{$b} <=> $virus{$a} } keys %virus) {
        print "\n$_: $virus{$_}";
}
print "\n";

Attachment: pgpJsiiTtA3LA.pgp
Description: PGP signature

_______________________________________________
http://lists.clamav.net/cgi-bin/mailman/listinfo/clamav-users

Reply via email to