Completed Bug ... > Bug (closed)

Mail header "from" is malformed / #4471

Summary

v0.08
closed
Mar 26, 2007
30 min ... 30 min
100%
May 29, 2007
Mar 27, 2007 / goldstift
May 30, 2007 / pixtur
 

Attached files

No files uploaded
Mails coming from Streber have the following "From:" mail header:

  Content-type: text/html; charset=UTF-8
  From: Streber Email Notification <do-not-reply@domain.tld>

This line is parsed by Thunderbird as the first line of the mail's html code.

I simply switched the following two lines and got the result I had expected.

from std/mail.inc.php

    629         if($html_format) {
    630             $headers .= "Content-type: text/html; charset=UTF-8rn";
    631             $headers .= "From: $fromrn";
    632         }
 

... have to go to...

from std/mail.inc.php

    629         if($html_format) {
    630             $headers .= "From: $fromrn";
    631             $headers .= "Content-type: text/html; charset=UTF-8rn";
    632         }
 

Greets,
Alex

Issue report

Minor
Have not tried
WinXP-SP2 Thunderbird 1.5.0.10
v0.0796
 

1 Comment

pixtur

Apr 6, 2007
thanks for this hint...
This is a weird behavior, though. I changed the code respectively.

 

Comment / Update