mirror of https://github.com/M66B/FairEmail.git
Skip EXISTS for POP3
This commit is contained in:
parent
47e9eca3de
commit
d56cee5fc1
|
@ -858,7 +858,10 @@ public class ServiceSend extends ServiceBase implements SharedPreferences.OnShar
|
|||
// Message could have been deleted
|
||||
EntityMessage orphan = db.message().getMessage(sid);
|
||||
if (orphan != null)
|
||||
EntityOperation.queue(this, orphan, EntityOperation.EXISTS);
|
||||
if (account == null || account.protocol == EntityAccount.TYPE_IMAP)
|
||||
EntityOperation.queue(this, orphan, EntityOperation.EXISTS);
|
||||
else if (sent != null)
|
||||
EntityContact.received(this, account, sent, message);
|
||||
|
||||
db.setTransactionSuccessful();
|
||||
} finally {
|
||||
|
|
Loading…
Reference in New Issue