Roundup Tracker - Issues

Message3764

Author Nikratio
Recipients Nikratio
Date 2009-07-10.14:33:40
Message-id <1247236421.66.0.118080965995.issue2550560@psf.upfronthosting.co.za>
In-reply-to
The 

   self.smtp_send(to, str(message))

call in line 120 generates an unix from line with Python 2.6.2. This
causes the MTA to immediately stop looking for headers, so all the
message headers end up in the mail body. Changing the above line to
  
   self.smtp_send(to, message.as_string(unixfrom=False))

fixes the problem. 

According to the Python documentation, unixfrom=False is actually the
default value. However, this is not the case in at least two Python
versions, so I think it can do no harm to work around this in roundup.
History
Date User Action Args
2009-07-10 14:33:41Nikratiosetmessageid: <1247236421.66.0.118080965995.issue2550560@psf.upfronthosting.co.za>
2009-07-10 14:33:41Nikratiosetrecipients: + Nikratio
2009-07-10 14:33:41Nikratiolinkissue2550560 messages
2009-07-10 14:33:40Nikratiocreate