mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-10 19:13:03 +02:00
Skip EXISTS for POP3
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user