Closed
Bug 5493
Opened 26 years ago
Closed 25 years ago
When Replying or Forwarding an e-mail the message header is mangled
Categories
(MailNews Core :: Composition, defect, P3)
Tracking
(Not tracked)
M10
People
(Reporter: marina, Assigned: bugzilla)
Details
(Whiteboard: [PR1])
Steps to reproduce:
open an e-mail|click Reply or Forward
//note: in the Subject field there is no header
Comment 1•26 years ago
|
||
I debugged this today because I made i18n changes on 4/19.
For reply/forward, nsIMessage gets original mail's info (to, cc, subject).
In the code below, msgHdr is null so we get an error and the subject string
unchanged (it is initialized as empty string). I think this is the reason that
we don't get headers (because they are empty strings).
I think this is not related to the change I made on 4/19 but let me know if
anything wrong with my code.
mozilla/mailnews/base/util/nsMessage.cpp
NS_IMETHODIMP nsMessage::GetSubject(nsString &resultSubject)
{
if(mMsgHdr)
return mMsgHdr->GetSubject(resultSubject);
else
return NS_ERROR_FAILURE;
}
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
Comment 3•26 years ago
|
||
What Lisa said. Marking invalid.
marking verified as invalid. Once these features are implemented, we'll try out
the functionality.
As far as i understand Reply and Forward are implemented now. When getting a
replyied message you see all non-ascii garbled (not in the thread pane, in the
message header). So reopening
Assignee | ||
Updated•26 years ago
|
Status: REOPENED → ASSIGNED
Target Milestone: M10
Comment 9•25 years ago
|
||
And we need to have time to look at the fix carefully well before
Beta 1. We are trying to fix the body problem for M9 right now --
Bug 11763. I might also add that Latin 1 header quoting was working
pre-necko (7/28/99 build) and so this is really a regression for
Latin 1 even for M9. See my comment in Bug 11763 on this.
Updated•25 years ago
|
Summary: When Replying or Forwarding an e-mail the message header is lost → When Replying or Forwarding an e-mail the message header is mangled
Comment 10•25 years ago
|
||
When I say "working" for pre-necko, I mean "POP3". IMAP quoting
seemed to have been broken according to rhp.
Comment 11•25 years ago
|
||
Marina, please update the status of this bug with regard to HTML/Plain
text Latin 1 send for both POP3 and IMAP servers.
Comment 12•25 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 26 years ago → 25 years ago
Resolution: --- → DUPLICATE
Reporter | ||
Comment 13•25 years ago
|
||
I marked this one as a dup of 10965 since it is the same problem and i agree
with Kat it's better to keep 10965 alive
*** This bug has been marked as a duplicate of 10965 ***
Comment 14•25 years ago
|
||
Verified as duplicate
Updated•20 years ago
|
Product: MailNews → Core
Updated•17 years ago
|
Product: Core → MailNews Core
You need to log in
before you can comment on or make changes to this bug.
Description
•