Roundup Tracker - Issues

Issue 2550565

classification
Wrong mail headers
Type: behavior Severity: critical
Components: Mail interface Versions: devel
process
Status: closed fixed
:
: stefan : stefan
Priority: urgent : patch

Created on 2009-07-14 18:19 by stefan, last changed 2009-07-14 18:21 by stefan.

Files
File name Uploaded Description Edit Remove
patch stefan, 2009-07-14 18:19
Messages
msg3784 Author: [hidden] (stefan) Date: 2009-07-14 18:19
Roundup 1.4.8 uses "str(message)" on an email.Message.Message.  That,
for whatever reason, inserts a UNIX mailbox "From" envelope header --
in the midst of the RFC822 headers.  Which Thunderbird seems to
accept, but which Exchange quite reasonably decides is the beginning
of the message proper.  There's no reason to be generating the
envelope header when sending the message via SMTP.  By using
as_string, we avoid this behavior; "__str__" is just a call to
"as_string(unixfrom=True)".
msg3785 Author: [hidden] (stefan) Date: 2009-07-14 18:21
Fixed as per rev:4318.
History
Date User Action Args
2009-07-19 22:48:31stefanlinkissue2550560 superseder
2009-07-14 18:21:47stefansetstatus: new -> closed
resolution: fixed
messages: + msg3785
2009-07-14 18:19:55stefancreate