Closed
Bug 525532
Opened 16 years ago
Closed 16 years ago
reply all is shown when your email is in wrong case
Categories
(Thunderbird :: Mail Window Front End, defect)
Thunderbird
Mail Window Front End
Tracking
(Not tracked)
RESOLVED
FIXED
Thunderbird 3.0rc1
People
(Reporter: mkmelin, Assigned: mkmelin)
Details
Attachments
(1 file, 1 obsolete file)
|
1.55 KB,
patch
|
mkmelin
:
review+
standard8
:
approval-thunderbird3+
|
Details | Diff | Splinter Review |
Some systems insist on sending mail to you using ALL CAPS case or similar. For such emails the Reply All is shown. It should not.
Yeah emails are case-sensitive in theory, but theory only.
Attachment #409390 -
Flags: review?(bwinton)
Comment 1•16 years ago
|
||
Comment on attachment 409390 [details] [diff] [review]
proposed fix
> let myEmail = getIdentityForHeader(msgHdr).email;
I'ld prefer you put the ".toLowerCase()" up on this line, since...
[snip]
>- let imInAddresses = addresses.indexOf(myEmail) != -1;
>+ let imInAddresses = addresses.toLowerCase().indexOf(myEmail.toLowerCase()) != -1;
this is the only place we use the myEmail variable, and this line is just a little longer than 80 characters if you do it down here. ;)
r=me, though, with or without that change.
And I'm asking for approval because it's a very small change, with low risk of breaking anything, that will make a sort-of-small number of users happier.
Thanks,
Blake.
Attachment #409390 -
Flags: review?(bwinton)
Attachment #409390 -
Flags: review+
Attachment #409390 -
Flags: approval-thunderbird3?
Updated•16 years ago
|
Attachment #409390 -
Flags: approval-thunderbird3? → approval-thunderbird3+
Comment 2•16 years ago
|
||
But I have two e-mail accounts, one named art@... and one named ART@...
What if I want to move the conversation over to art@...?
Leave well enough alone, or, better yet, always show the "reply all".
Automated predictions will always fail to predict what the users want in SOME cases, and it's anyhow usually better to be consistent, even when it means more clutter.
| Assignee | ||
Comment 3•16 years ago
|
||
So are you saying you have two actual accounts for that? (=emails differ only by case, go to different accounts on the server.) You'd be the first i've heard of!
For the absolute majority of users, you'd not want to reply to yourself too when replying.
Anyway, this patch only actually changes things when YOU're the single recipient. In case a mail is to YOU and someone else the reply button is shown (like before).
Comment 4•16 years ago
|
||
For what it's worth, I've only ever seen improper case in the domain-part of the email address. That's a bit harder to check for, though.
| Assignee | ||
Comment 5•16 years ago
|
||
Carrying forward r=bwinton
Requesting approval; well contained small patch
Attachment #409390 -
Attachment is obsolete: true
Attachment #410310 -
Flags: review+
Attachment #410310 -
Flags: approval-thunderbird3?
Updated•16 years ago
|
Attachment #410310 -
Flags: approval-thunderbird3? → approval-thunderbird3+
| Assignee | ||
Comment 6•16 years ago
|
||
changeset: 4322:d2b4b4a521d3
http://hg.mozilla.org/comm-central/rev/d2b4b4a521d3
changeset: 4299:057597d6ad0d
http://hg.mozilla.org/releases/comm-1.9.1/rev/057597d6ad0d
->FIXED
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Target Milestone: --- → Thunderbird 3.0rc1
You need to log in
before you can comment on or make changes to this bug.
Description
•