Closed
Bug 30281
Opened 25 years ago
Closed 25 years ago
Body of outgoing message is blank in today's build
Categories
(MailNews Core :: Composition, defect, P3)
MailNews Core
Composition
Tracking
(Not tracked)
VERIFIED
FIXED
M14
People
(Reporter: phil, Assigned: mscott)
References
Details
(Keywords: regression, smoketest)
Using 3/3 morning build on Windows NT
Compose a message, and send it to yourself
Receive the message
No body text is shown
| Reporter | ||
Comment 1•25 years ago
|
||
Tried to read the message in 4.7. No body there either. Data loss. Bad bad bad.
Comment 2•25 years ago
|
||
I'm on it like hair on a monkey :-)
- rhp
Status: NEW → ASSIGNED
Target Milestone: M14
Comment 3•25 years ago
|
||
I am looking at it too.
Comment 4•25 years ago
|
||
Well, the reason that the emails are blank is that:
rv = conv->ScanHTML(bodyText, whattodo, &wresult);
is returning an empty HTML document in wresult. Looking into what is going on
inside of ScanHTML().
- rhp
Comment 5•25 years ago
|
||
I am seeing this on Mac. Update platform to all.
Can this be the same thing were seeing in Aim? Bugsplat bug
http://scopus/bugsplat/show_bug.cgi?id=386904
| Reporter | ||
Comment 7•25 years ago
|
||
Do you mean a different bug? 386904 seems to be something else. But IM
conversations are losing a lot of data in today's build too.
Comment 8•25 years ago
|
||
Probably...if they scan the text for conversion before sending...probably.
- rhp
Update: using builds 2000-03-03 on linux, html only. Also note, copy to sent
folder fails sending an html message, but not a plain text message.
Comment 10•25 years ago
|
||
Sorry I meant Aim bug http://scopus/bugsplat/show_bug.cgi?id=387213
Can't see messages in IM conversation log.
Comment 11•25 years ago
|
||
udating my update. the copy to sent folder of an html message, fails on all
platforms too, probably related to this.
Comment 12•25 years ago
|
||
Ok, well, I think it narrows down to this block of code inside of
mozTXTToHTMLConv::ScanHTML():
PRUint32 start = PRUint32(i);
i = aInString.FindChar('<', PR_FALSE, i);
if (i == kNotFound)
i = lengthOfInString;
nsString tempString;
tempString.SetCapacity((PRUint32(i) - start) * growthRate);
UnescapeStr(aInString.GetUnicode(), start, PRUint32(i) - start,
tempString);
ScanTXT(tempString.GetUnicode(), tempString.Length(), whattodo,
aOutString);
When I was walking through this, it looked like tempString was always set to ""
when I should have seen some body text...I think.
I'll keep digging, but I'd like mscott to take a look at this.
- rhp
| Reporter | ||
Comment 13•25 years ago
|
||
Left sticky note at work and voice mail at home for mscott.
Comment 14•25 years ago
|
||
Actually, the copy to sent folder of an HTML message only - failed for linux and
mac only. windows was OK. I thought this was related. Maybe this isn't
related, I'll log a separate bug.
| Reporter | ||
Comment 15•25 years ago
|
||
FCC fails for me on NT. I have no idea if that's the same bug as blank body or not.
Comment 16•25 years ago
|
||
copy to folder on send failed for me on Win98 too.
| Reporter | ||
Comment 17•25 years ago
|
||
FCC plain text works for me, though (FCC HTML doens't), so it might be the same bug.
Comment 18•25 years ago
|
||
Since we're also seeing this IM, I think this may be due to ender not returning
its content when queried. Just a hunch.
| Assignee | ||
Comment 19•25 years ago
|
||
I have a fix. There was a bug in one of my changes that really showed itself on
small messages and not larger ones. getting permission to check in now.
| Assignee | ||
Comment 21•25 years ago
|
||
I should be thanking you not the other way around. Thanks for the detective work.
Esther, I hear there's another bug about messages not getting copied to the sent
folder. Did you file a separate bug or is that in this one too.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Comment 22•25 years ago
|
||
*** Bug 30314 has been marked as a duplicate of this bug. ***
Comment 23•25 years ago
|
||
Scott, no I didn't file a separate bug for the HTML failing in copy to sent
folder. I suspected and so did Phil that it was part of the bug. I just tested
this fix and the Copy to sent is fixed too.
Using build 2000-03-03-12 on linux and 2000-03-03-13 on Mac this is fixed. Still
waiting for Windows build to test.
| Reporter | ||
Comment 24•25 years ago
|
||
Windows build is available and both issues appear to be fixed
Comment 25•25 years ago
|
||
using build 2000-03-03-14 on win98 this is fixed. verified.
Status: RESOLVED → VERIFIED
Updated•21 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
•