mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 23:26:12 +02:00
Check for expunge/deleted on fetch
This commit is contained in:
@@ -1247,11 +1247,16 @@ class Core {
|
||||
throw new MessageRemovedException("removed uid=" + uid);
|
||||
}
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean perform_expunge = prefs.getBoolean("perform_expunge", true);
|
||||
|
||||
MimeMessage imessage = (MimeMessage) ifolder.getMessageByUID(uid);
|
||||
if (imessage == null)
|
||||
throw new MessageRemovedException(folder.name + " fetch not found uid=" + uid);
|
||||
if (imessage.isExpunged())
|
||||
throw new MessageRemovedException(folder.name + " fetch expunged uid=" + uid);
|
||||
if (perform_expunge && imessage.isSet(Flags.Flag.DELETED))
|
||||
throw new MessageRemovedException(folder.name + " fetch deleted uid=" + uid);
|
||||
|
||||
SyncStats stats = new SyncStats();
|
||||
boolean download = db.folder().getFolderDownload(folder.id);
|
||||
|
||||
Reference in New Issue
Block a user