Closed
Bug 95041
Opened 24 years ago
Closed 24 years ago
new email message does not create To: field automatically
Categories
(MailNews Core :: Composition, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla0.9.4
People
(Reporter: rflazaro, Assigned: vparthas)
References
Details
(Keywords: regression)
Attachments
(2 files)
|
1.00 KB,
patch
|
Details | Diff | Splinter Review | |
|
1.03 KB,
patch
|
mscott
:
review+
mscott
:
superreview+
asa
:
approval+
|
Details | Diff | Splinter Review |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:0.9.3+) Gecko/20010812
BuildID: 2001081208
when i try to create a new message the email composer does not create a To:
field where i should input the address of the recipient of email message rather
it goes to the subject line
Reproducible: Always
Steps to Reproduce:
1. select Edit->Mail/News Account Settings
2. select an email account
3. input an email address in the Reply-to Address field
4. create a new message
- click New Msg
- press Ctrl+M
- click File->New Message
Actual Results: - you will see the reply-to field
- there is no To: field automatically created
- the cursor will immediately go to the subject field
Expected Results: - it should create a To: field where the address of the
recipient can be inputted
- it used to work before
Comment 2•24 years ago
|
||
confirming this on all platforms. This is not just restricted to a news account
but setting up the reply-to for imap and pop accounts as well. There is another
bug which only mentions about setting up reply-to in news which has the similar
problem.
Severity: normal → major
Status: UNCONFIRMED → NEW
Ever confirmed: true
Keywords: nsBranch
OS: Windows NT → All
this is still working properly in build 2001080110, i think it was the next
builds in the dailies that broke this
I am using build 2001082909 on WinNT and it still not working. It only happens
if your Reply-to Address has a value
This regression might have caused by blake's checkin on 08-11-2001 regarding
bug# 30454. I assume that this file was checked in by mistake. CCing blake
if ((top.MAX_RECIPIENTS == 0 && ((msgType == msgComposeType.New) || (msgType
== msgComposeType.ForwardAsAttachment) || (msgType ==
msgComposeType.ForwardInline))) || top.MAX_RECIPIENTS == 0)
Should be changed back to
if ((msgType == msgComposeType.New) || (msgType ==
msgComposeType.ForwardAsAttachment) || (msgType == msgComposeType.ForwardInline)
|| (top.MAX_RECIPIENTS == 0))
The reason top.MAX_RECIPIENTS==0 needs to be separate is for the scenario when
there is a reply-to field and in this case there is already one recipient but we
need to create one more row for the To: field.
Comment 8•24 years ago
|
||
yeah, back blake out.
sr=sspitzer
I tried the new addressbok in sidebar feature and I can understand why blake
made the necc changes to addressingwidgetoverlay.js. My changes did not take
this into account. I will not be using this patch/backing out. I will post
another patch soon.
Comment 10•24 years ago
|
||
It was actually intentional. Backing me out will fix this problem but then
expose the one I was fixing, namely that when you double click an address in the
addressbook sidebar panel (or click an item in the addressbook and click New
Msg), it fills in a To field but then creates and focuses another To field,
which is incorrect.
Comment 11•24 years ago
|
||
In other words, what varada just said :-) Thanks for looking deeper into this,
sorry for causing this.
| Assignee | ||
Comment 12•24 years ago
|
||
| Assignee | ||
Comment 13•24 years ago
|
||
Adding sspitzer for r/sr. I have gotten rid of all the convoluted logic for
determining the necessity for a "To: row" and have made it into one condition
viz to check for the presence of a "To: row" value and if it is not present then
we create a row.
Comment 14•24 years ago
|
||
what about for posting news?
select a newsgroup, hit new msg.
that won't have a to: field.
| Assignee | ||
Comment 15•24 years ago
|
||
Comment 16•24 years ago
|
||
sr=sspitzer
| Assignee | ||
Comment 17•24 years ago
|
||
CCing asa for approval
Comment 18•24 years ago
|
||
r=prass
| Assignee | ||
Comment 19•24 years ago
|
||
*** Bug 97743 has been marked as a duplicate of this bug. ***
Updated•24 years ago
|
Attachment #47751 -
Flags: superreview+
Attachment #47751 -
Flags: review+
| Assignee | ||
Comment 20•24 years ago
|
||
adding .9.4 milestone and regression keyword
Keywords: regression
Target Milestone: --- → mozilla0.9.4
Comment 21•24 years ago
|
||
Comment on attachment 47751 [details] [diff] [review]
New patch -thanks to seth for pointing out the newsgroup aspect.
a=asa on behalf of drivers
Attachment #47751 -
Flags: approval+
| Assignee | ||
Comment 22•24 years ago
|
||
marking fixed.
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Comment 23•24 years ago
|
||
verified on imap,pop,news with reply-to settings the cursor remains in the to
field.
2001-09-04-08 linux
2001-09-04-11 mac
2001-09-04-10 win98
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
•