mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +00:00
Match identities by BCC too
This commit is contained in:
parent
469574a598
commit
3446c88630
2 changed files with 3 additions and 1 deletions
2
FAQ.md
2
FAQ.md
|
@ -947,7 +947,7 @@ Note that this is independent of receiving messages.
|
||||||
**(34) How are identities matched?**
|
**(34) How are identities matched?**
|
||||||
|
|
||||||
Identities are as expected matched by account.
|
Identities are as expected matched by account.
|
||||||
For incoming folders the *to*, *cc* and *from* addresses will be checked
|
For incoming folders the *to*, *cc*, *bcc* and *from* addresses will be checked
|
||||||
and for outgoing folders (drafts, outbox and sent) the *from* addresses will be checked.
|
and for outgoing folders (drafts, outbox and sent) the *from* addresses will be checked.
|
||||||
|
|
||||||
The matched address will be shown as *via* in the addresses section.
|
The matched address will be shown as *via* in the addresses section.
|
||||||
|
|
|
@ -2332,6 +2332,8 @@ class Core {
|
||||||
addresses.addAll(Arrays.asList(message.to));
|
addresses.addAll(Arrays.asList(message.to));
|
||||||
if (message.cc != null)
|
if (message.cc != null)
|
||||||
addresses.addAll(Arrays.asList(message.cc));
|
addresses.addAll(Arrays.asList(message.cc));
|
||||||
|
if (message.bcc != null)
|
||||||
|
addresses.addAll(Arrays.asList(message.bcc));
|
||||||
if (message.from != null)
|
if (message.from != null)
|
||||||
addresses.addAll(Arrays.asList(message.from));
|
addresses.addAll(Arrays.asList(message.from));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue