Closed
Bug 67991
Opened 24 years ago
Closed 24 years ago
not prompted to send as Plain Text | HTML | Both
Categories
(MailNews Core :: Composition, defect)
MailNews Core
Composition
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla0.8
People
(Reporter: asa, Assigned: bugzilla)
References
Details
(Keywords: regression, Whiteboard: critical for mozilla 0.8)
Tested this morning's Mac and win32 builds. 020704
When sending a mail message with HTML content the user is not prompted for send
as type options.
1. compose new message
2. add a table or HR or some other HTML
3. send message
results: not prompted to send as plain text, html or both
expecrted: prompted.
Reporter | ||
Comment 1•24 years ago
|
||
adding keywords, setting severity.
Comment 2•24 years ago
|
||
This is even worse. All emails are being sent as HTML even with "Convert the
message to plain text" setting on. I am sure this is the same bug therefore I do
not report it as a new one. However does this mean that the title of the bug
should be changed?
Seen on both Win32 2001020606 and 2001020704 installer builds (Windows ME).
Assignee | ||
Comment 3•24 years ago
|
||
I am looking at it... seems to be something wrong in JS: The backend correctly
build the list of user that doesn't support HTML but JS see this string as empty!!!
Status: NEW → ASSIGNED
Target Milestone: --- → mozilla0.8
Assignee | ||
Comment 8•24 years ago
|
||
Here is the fix:
Index: MsgComposeCommands.js
===================================================================
RCS file:
/cvsroot/mozilla/mailnews/compose/resources/content/MsgComposeCommands.js,v
retrieving revision 1.143
diff -w -u -4 -r1.143 MsgComposeCommands.js
--- MsgComposeCommands.js 2001/02/05 07:53:02 1.143
+++ MsgComposeCommands.js 2001/02/07 22:13:00
@@ -1623,15 +1623,17 @@
if (sendFormat == msgCompSendFormat.AskUser)
{
//Well, before we ask, see if we can figure out what to do for ourselves
- var noHtmlRecipients = new String("");
+ var noHtmlRecipients;
var noHtmlnewsgroups;
var preferFormat;
//Check the address book for the HTML property for each recipient
try {
- preferFormat = msgCompose.CheckAndPopulateRecipients(true, true,
noHtmlRecipients);
+ var obj = new Object;
+ preferFormat = msgCompose.CheckAndPopulateRecipients(true, true, obj);
+ noHtmlRecipients = obj.value;
} catch(ex)
{
var msgCompFields = msgCompose.compFields;
noHtmlRecipients = msgCompFields.GetTo() + "," +
msgCompFields.GetCc() + "," + msgCompFields.GetBcc();
Comment 9•24 years ago
|
||
sr=mscott
Comment 10•24 years ago
|
||
r=sspitzer
Reporter | ||
Comment 11•24 years ago
|
||
please check this in. thanks! a=asa and all that.
Assignee | ||
Comment 12•24 years ago
|
||
Fixed and checked in
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 13•24 years ago
|
||
*** Bug 67931 has been marked as a duplicate of this bug. ***
Comment 14•24 years ago
|
||
commercial trunk buildid: 2001021909 win98
2001021904 mac
2001021908 linux
verified
Status: RESOLVED → VERIFIED
Updated•24 years ago
|
Keywords: mozilla0.8
Updated•20 years ago
|
Product: MailNews → Core
Updated•16 years ago
|
Product: Core → MailNews Core
You need to log in
before you can comment on or make changes to this bug.
Description
•