Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: DBMail: dev

[DBMail 0000783]: Boundary missing in message construction

 

 

DBMail dev RSS feed   Index | Next | Previous | View Threaded


bugtrack at dbmail

May 12, 2009, 5:36 AM

Post #1 of 4 (810 views)
Permalink
[DBMail 0000783]: Boundary missing in message construction

The following issue has been SUBMITTED.
======================================================================
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 14:36 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);
}

======================================================================

Issue History
Date Modified Username Field Change
======================================================================
12-May-09 14:36 maximP New Issue
======================================================================

_______________________________________________
Dbmail-dev mailing list
Dbmail-dev [at] mailman
http://mailman.fastxs.nl/cgi-bin/mailman/listinfo/dbmail-dev


bugtrack at dbmail

May 12, 2009, 6:23 AM

Post #2 of 4 (749 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


bugtrack at dbmail

May 12, 2009, 6:30 AM

Post #3 of 4 (745 views)
Permalink
[DBMail 0000783]: Boundary missing in message construction [In reply to]

A NOTE has been added to this issue.
======================================================================
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:30 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);
}

======================================================================

----------------------------------------------------------------------
(0002819) maximP (reporter) - 12-May-09 15:30
http://www.dbmail.org/mantis/view.php?id=783#c2819
----------------------------------------------------------------------
Access is denied for bug http://www.dbmail.org/mantis/view.php?id=775.

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
12-May-09 15:30 maximP Note Added: 0002819
======================================================================

_______________________________________________
Dbmail-dev mailing list
Dbmail-dev [at] mailman
http://mailman.fastxs.nl/cgi-bin/mailman/listinfo/dbmail-dev


bugtrack at dbmail

May 12, 2009, 7:34 AM

Post #4 of 4 (738 views)
Permalink
[DBMail 0000783]: Boundary missing in message construction [In reply to]

The following issue has been RESOLVED.
======================================================================
http://www.dbmail.org/mantis/view.php?id=783
======================================================================
Reported By: maximP
Assigned To: paul
======================================================================
Project: DBMail
Issue ID: 783
Category: General
Reproducibility: always
Severity: major
Priority: normal
Status: resolved
target:
Resolution: fixed
Fixed in Version: 2.3.6
======================================================================
Date Submitted: 12-May-09 14:36 CEST
Last Modified: 12-May-09 16:34 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
======================================================================

----------------------------------------------------------------------
(0002819) maximP (reporter) - 12-May-09 15:30
http://www.dbmail.org/mantis/view.php?id=783#c2819
----------------------------------------------------------------------
Access is denied for bug http://www.dbmail.org/mantis/view.php?id=775.

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
12-May-09 15:30 maximP Note Added: 0002819
12-May-09 16:34 paul Assigned To => paul
12-May-09 16:34 paul Status new => resolved
12-May-09 16:34 paul Resolution open => fixed
12-May-09 16:34 paul Fixed in Version => 2.3.6
======================================================================

_______________________________________________
Dbmail-dev mailing list
Dbmail-dev [at] mailman
http://mailman.fastxs.nl/cgi-bin/mailman/listinfo/dbmail-dev

DBMail dev RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.