4

I'm using Thunderbird 60.3.0 and I have 2 problems related to "Reply All" for sending followups to emails that I had sent:

1) When I send an email to one recipient I sometimes need to send a followup to that same person. Once upon a time I could click on that email in my Sent folder, then click the "Reply All" button in the message header panel and the reply would go to my original recipient. Now that "Reply All" button is missing and this "Smart Reply" thing refuses to give me more than a single "Reply" button which would uselessly just reply to myself. I can go to "Message"->"Reply To All" in the tools bar at the top of my window to get that functionality but that's an annoying inconvenience vs the way things used to be where there was simply a "Reply All" button next to the "Reply" button in the message header panel.

2) When I send an email and blind copy recipients I sometimes need to send a followup to that same distribution list. When I click on "Reply All" the Bcc list is stripped (this definitely was NOT the case in older versions of TB) and I'm only allowed to reply to any recipients who were NOT blind copied. To work around this I have to do Message->Edit As New Message, then cut all of the original content, re-paste it back in as a quotation, and remember to change the Subject line to prefix it with "Re:". Obviously that is ridiculously annoying vs if Reply-All simply included the Bcc'd recipients as Bcc-ed again.

It looks like both issues first showed up in 2014:

  1. http://forums.mozillazine.org/viewtopic.php?f=31&t=2796815
  2. https://support.mozilla.org/en-US/questions/1028980

but I can't find any reference of a fix for them.

Ed Morton
  • 188,023
  • 17
  • 78
  • 185

2 Answers2

1

2) When I send an email and blind copy recipients I sometimes need to send a followup to that same distribution list. When I click on "Reply All" the Bcc list is stripped (this definitely was NOT the case in older versions of TB) and I'm only allowed to reply to any recipients who were NOT blind copied.

This is not the behavior I see. I tested exactly this scenario in Thunderbird 60.3.0. When I am viewing a message in my Sent Items folder with a BCC in its header, and I click the Reply All button, the compose window that opens up has the BCC addresses in it. I don't know why you're seeing different behavior.

Jonathan Kamens
  • 1,026
  • 8
  • 4
  • I have mailnews.reply_to_self_check_all_ident set to false. I do not think it is relevant to the BCC issue you reported, which doesn't actually appear to be an issue. – Jonathan Kamens Nov 22 '18 at 15:58
  • Thanks for your response. Though it didn't answer my question, you did take the time to post a response and it did get me to re-run my 2nd failing scenario after applying the fix for my 1st one which got me to realize that fix had actually solved both problems which further led me to open a bug report with TB and get confirmation of the issue, an explanation of it, and confirmation of the "fix" (see [my answer](https://stackoverflow.com/a/53435182/1745001)) so I'm awarding you the bonus. – Ed Morton Nov 26 '18 at 02:06
1

Changing the flag at

Tools->Options->Advanced->General->
    [Config Editor button on bottom right]->
        mailnews.reply_to_self_check_all_ident

from false to true solves both problems, don't ask me why I just found that suggestion as a possible solution to my first problem at https://bugzilla.mozilla.org/show_bug.cgi?id=1498925 and was shocked when it fixed both problems.

Update 1: the Thundebird maintainers confirmed this behavior at https://bugzilla.mozilla.org/show_bug.cgi?id=1509326. It apparently has something to do with having more than 1 account and using a common "Sent" folder for both or maybe just using a local "Sent" folder that's not under the email account where your "Inbox" sits. TB seems to behave differently when replying to Sent messages if it can vs if it can't match the email account you sent the original email from with the email account you're using now and it relies on the folders to figure out the relative accounts otherwise it relies on "reply_to_self_check_all_ident" to do some further checks... idk, it's all pretty arcane but at least there is an explanation of sorts and a workaround!

Update 2: this is going to be fixed in an upcoming release of TB, 65.0, see bug tracking id https://bugzilla.mozilla.org/show_bug.cgi?id=1511723.

Here is the Reply All excluding the Bcc when that flag is set to false:

![enter image description here

and here is the Reply All including the Bcc when that flag is set to true:

enter image description here

Ed Morton
  • 188,023
  • 17
  • 78
  • 185
  • 1
    Your solution also fixes a related problem I experienced: hitting "Reply" on a mail inside the local "Sent Items" folder always chose the initial sender as recipient, instead of the initial recipient. This bug occurred only for local folders accessed via POP3, not separate accounts accessed via IMAP. Changing the flag and restarting Thunderbird solved this problem instantly. – user121391 Nov 26 '19 at 17:00
  • @user121391 Happy it helped! – Ed Morton Nov 26 '19 at 17:22