On Thursday 04 March 2004 07:03, David Erickson wrote:
> Anyone else seeing something like this?
Sure, its a bug in message_contains_virus_clamd(). Add this chunk of code
before "open up a socket and scan each file in ./Work" (in mimedefang.pl) :
# copy message for clamd
open(I, "<INPUTMSG");
open(O, ">Work/COMPLETE_MSG");
# give ClamAV the hint to treat it as mbox, otherwise
# it doesn't detect all the inline files.
print O "From [EMAIL PROTECTED] 1 Jan 2004\r\n";
while(<I>) {
print O;
}
close(I);close(O);
Dirk
_______________________________________________
Visit http://www.mimedefang.org and http://www.canit.ca
MIMEDefang mailing list
[EMAIL PROTECTED]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang