Open
Bug 480957
Opened 17 years ago
Updated 3 years ago
Forward inline doesn't work with email messages (.eml files) missing content-type
Categories
(MailNews Core :: Composition, defect)
MailNews Core
Composition
Tracking
(Not tracked)
NEW
People
(Reporter: mkmelin, Unassigned)
Details
+++ This bug was initially created as a clone of Bug #303540 +++
As noted with the testcase for bug 303540, https://bugzilla.mozilla.org/attachment.cgi?id=192173 forward inline doesn't work - you just end up with a blank message window.
Reproduced using the default charset prefs.
http://mxr.mozilla.org/comm-central/source/mailnews/mime/src/mimedrft.cpp#1417
1416 // If no charset is specified in the header then use the default.
1417 char *bodyCharset = mimeCharset ? mimeCharset : mdd->mailcharset;
1418 if (bodyCharset)
For whaterver reason, the mdd->mailcharset isn't getting set.
It should have been set earlier, by
mdd->mailcharset = strdup(mdd->options->default_charset);
...but iirc the default_charset isn't getting set either.
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•