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)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED
Thunderbird 3.0rc1

People

(Reporter: mkmelin, Assigned: mkmelin)

Details

Attachments

(1 file, 1 obsolete file)

Attached patch proposed fix (obsolete) — 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 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?
Attachment #409390 - Flags: approval-thunderbird3? → approval-thunderbird3+
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.
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).
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.
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?
Attachment #410310 - Flags: approval-thunderbird3? → approval-thunderbird3+
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.

Attachment

General

Created:
Updated:
Size: