On Wed, 2010-11-03 at 19:17 -0700, Daniel L. Miller wrote: > >> Nov 3 16:08:00 bubba dovecot: imap(dmil...@amfes.com): Error: Attachment > >> file > >> /var/mail/attachments/dc/73/dc7398c85dd02efe8a14fe6cc019b2cf07eec600-d5ca962aaae7d14c587400003bc41c5f > >> size mismatch: 122626 != 165655
OK, I see now where there's a bug, but I can't figure out how to reproduce it. Maybe there would be another better way to fix this than I'm thinking. Could you insert a crash to this error message (attached) and get gdb backtrace from it? http://dovecot.org/bugreport.html
diff -r fd44ba1fa729 src/lib-storage/index/istream-attachment.c --- a/src/lib-storage/index/istream-attachment.c Wed Nov 03 18:00:15 2010 +0000 +++ b/src/lib-storage/index/istream-attachment.c Thu Nov 04 14:00:21 2010 +0000 @@ -94,7 +94,7 @@ stream->statbuf = *st; stream->statbuf.st_size = astream->size; if (st->st_size != 0 && (uoff_t)st->st_size != astream->size) { - i_error("Attachment file %s size mismatch: " + i_panic("Attachment file %s size mismatch: " "%"PRIuUOFF_T" != %"PRIuUOFF_T, i_stream_get_name(stream->parent), st->st_size, astream->size);