mirror of https://github.com/M66B/FairEmail.git
Allow duplicate message IDs POP3/UIDL
This commit is contained in:
parent
8bc27c12b2
commit
635f542f9a
|
@ -2914,7 +2914,7 @@ class Core {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (msgIdTuple.containsKey(msgid)) {
|
if (hasUidl ? uidlMsgId.containsKey(uidl) : msgIdTuple.containsKey(msgid)) {
|
||||||
_new = false;
|
_new = false;
|
||||||
Log.i(account.name + " POP having " + msgid + "/" + uidl);
|
Log.i(account.name + " POP having " + msgid + "/" + uidl);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue