
bugtrack at dbmail
May 12, 2009, 6:23 AM
Post #2 of 4
(747 views)
Permalink
|
|
[DBMail 0000783]: Boundary missing in message construction
[In reply to]
|
|
The following issue has been set as DUPLICATE OF issue 0000775. ====================================================================== http://www.dbmail.org/mantis/view.php?id=783 ====================================================================== Reported By: maximP Assigned To: ====================================================================== Project: DBMail Issue ID: 783 Category: General Reproducibility: always Severity: major Priority: normal Status: new target: ====================================================================== Date Submitted: 12-May-09 14:36 CEST Last Modified: 12-May-09 15:23 CEST ====================================================================== Summary: Boundary missing in message construction Description: In the process of message construction in _mime_retrieve function in dbmail-message.c, when two successive message parts are headers, no boundary is inserted between them making MUA to confuse. Possible solution: @@ -361,7 +366,7 @@ if (depth>0 && blist[depth-1]) boundary = (char *)blist[depth-1]; - if (is_header && (!prev_header|| prev_boundary)) { + if (is_header && (!prev_header || prev_boundary || (prev_header && (depth > 0)))) { dprint("\n--%s\n", boundary); g_string_append_printf(m, "\n--%s\n", boundary); } ====================================================================== Relationships ID Summary ---------------------------------------------------------------------- duplicate of 0000775 Issue with multiple inline attachments ====================================================================== Issue History Date Modified Username Field Change ====================================================================== 12-May-09 14:36 maximP New Issue 12-May-09 15:23 paul Relationship added duplicate of 0000775 ====================================================================== _______________________________________________ Dbmail-dev mailing list Dbmail-dev [at] mailman http://mailman.fastxs.nl/cgi-bin/mailman/listinfo/dbmail-dev
|