Oscar Cwajbaum writes:

Hi,

I've noticed that SqWebMail truncates messages that contain a lot of message/rfc822 inline attachments. I've attached a sample email that exhibits this problem. The truncation is very abrupt; it's frequently truncated mid-HTML-tag. Is this a known issue? Is there any setting to fix this, or a workaround?

I'm running courier 0.60.

This wasn't a known issue until now. You've found a bug.

The following fix will be in the next release. You can try applying this fix manually and confirm that it fixes your problem. Thanks for reporting this.


diff -U3 -r1.11 -r1.12
--- webmail/rfc2646html.c       11 Jul 2007 01:35:49 -0000      1.11
+++ webmail/rfc2646html.c       27 Jan 2009 00:53:16 -0000      1.12
@@ -10,7 +10,7 @@
#include        <string.h>
#include        <stdio.h>

-static const char rcsid[]="$Id: rfc2646html.c,v 1.11 2007/07/11 01:35:49 mrsam Exp 
$";
+static const char rcsid[]="$Id: rfc2646html.c,v 1.12 2009/01/27 00:53:16 mrsam Exp 
$";

/*
** Flowed-text format processing (see RFC2646).
@@ -198,7 +198,7 @@
                        "<div class=\"quotedtext\">",
                        r->current_quote_depth % 3);

-               rc=(*r->handler)(str, strlen(str), p->voidarg);
+               rc=(*r->handler)(str, strlen(str), r->voidarg);

                if (rc)
                        return (NULL);

Attachment: pgpvraVHnJm5G.pgp
Description: PGP signature

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
courier-users mailing list
[email protected]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to