Skip EXISTS for POP3

This commit is contained in:
M66B 2023-01-14 14:34:21 +01:00
parent 47e9eca3de
commit d56cee5fc1
1 changed files with 4 additions and 1 deletions

View File

@ -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)
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 {