Patch (to be ported)
Project:
Maillog / Mail Developer (obsolete)
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Feb 2012 at 17:34 UTC
Updated:
13 Feb 2012 at 01:51 UTC
in case the original mail subject contains non-ASCII, UTF-8 characters, it is encoded by mimemail. In order to show it correctly in the maillog the subject has to be decoded before storing it in the database.
In maillog_mail_send change
$record->subject = $message['subject'];
to
$record->subject = mime_header_decode($message['subject']);
Comments
Comment #1
miro_dietikerFixed.
Also added decode support for from and to header elements.
Comment #2
miro_dietikerAnyone?
http://drupalcode.org/project/maillog.git/commit/2591153d5ba486806ac6600...