mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 21:24:34 +00:00
Skip EXISTS for POP3
This commit is contained in:
parent
47e9eca3de
commit
d56cee5fc1
1 changed files with 4 additions and 1 deletions
|
@ -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 a new issue