> #0 0x28121bbc in kill () from /usr/lib/libc_r.so.4 > #1 0x2816fe6e in abort () from /usr/lib/libc_r.so.4 > #2 0x28149a37 in __assert () from /usr/lib/libc_r.so.4 > #3 0x2807ea38 in insert () from /usr/local/lib/libclamav.so.1
That is useless without debugging symbol or the full message may help. If you keep the compiled sources, look in clamd/ subdirectory then run gdb .lib/clamd /place/to/your/clamd.core type "where". On my case, I got #0 0x28116bd8 in kill () from /usr/lib/libc_r.so.4 #1 0x2816568d in abort () from /usr/lib/libc_r.so.4 #2 0x2813d19f in __assert () from /usr/lib/libc_r.so.4 #3 0x2807eed0 in messageSetDispositionType (m=0x8cb0160, disptype=0x0) at message.c:222 #4 0x2807d3a1 in insert (mainMessage=0x8cb0a00, blobsIn=0x0, nBlobs=0, textIn=0x0, dir=0x8cb0020 "/var/tmp//367be6a79f799fd3", rfc821Table=0x8beed40, subtypeTable=0x8beed90) at mbox.c:616 #5 0x2807de98 in insert (mainMessage=0x8cb0560, blobsIn=0x0, nBlobs=0, textIn=0x0, dir=0x8cb0020 "/var/tmp//367be6a79f799fd3", rfc821Table=0x8beed40, subtypeTable=0x8beed90) at mbox.c:1027 #6 0x2807d8d5 in insert (mainMessage=0x0, blobsIn=0x0, nBlobs=0, textIn=0x0, dir=0x8cb0020 "/var/tmp//367be6a79f799fd3", rfc821Table=0x8beed40, subtypeTable=0x8beed90) at mbox.c:821 (...) Notice the first argument of insert() #5, mainMessage has type message* and has address 0x8cb0560 Then do (gdb) set $foo = *((message *)0x8cb0560)->body_first (gdb) print $foo $16 = {t_text = 0x8cad8f0 "Return-Path: <>", t_next = 0x8cad900} (gdb) print ($foo = $foo->t_next)->t_text $17 = 0x8cacac0 "X-Original-To: XXXXX" Next, press ENTER again and again to read your message line by line and pry it's not too long. Maybe you can guess how is routed the mail reading the headers and retreive it on a mailbox. Some debugging routine to print a mail according an address may be helpful on this case. ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users