engine: Reply all needs to reply to sender
If a mail is sent to a mailing list with Reply-To set, we need to reply to sender too!
This commit is contained in:
parent
b7503f05ce
commit
9e546397a3
1 changed files with 3 additions and 0 deletions
|
|
@ -55,6 +55,9 @@ namespace Geary.RFC822.Utils {
|
|||
if (email.to != null && !email_is_from_sender(email, sender_addresses))
|
||||
new_cc.add_all(email.to.get_all());
|
||||
|
||||
if (email.from != null)
|
||||
new_cc.add_all(email.from.get_all());
|
||||
|
||||
if (email.cc != null)
|
||||
new_cc.add_all(email.cc.get_all());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue