> I'm afraid the perlscanner file checks happen first for a
> reason - they're cheap :-) Any virus/whatever you can block
> earlier means less work for your system.
>
is it possible to change the calls to perlscan_scanner() and scanloop()
around in the init_scanners() function? or will take break stuff...
I've never tried it.
sub init_scanners {
..
..
chdir("$scandir/$file_id/");
&perlscan_scanner;
..
..
if ($redundant_scanning) {
link("$scandir/$wmaildir/new/$file_id","$scandir/$file_id/orig-$file_id"
);
}
&scanloop;
chdir("$scandir");
..
..
}
to
sub init_scanners {
..
..
chdir("$scandir/$file_id/");
if ($redundant_scanning) {
link("$scandir/$wmaildir/new/$file_id","$scandir/$file_id/orig-$file_id"
);
}
&scanloop;
&perlscan_scanner;
..
..
chdir("$scandir");
..
..
}
-------------------------------------------------------
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
_______________________________________________
Qmail-scanner-general mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/qmail-scanner-general