1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-17 07:30:16 -05:00

The closest thing to bulk delete for POP3. Stupid POP3 has no

multiple delete command, but at least we can index UIDs in one shot.
This commit is contained in:
Daniel Applebaum 2009-11-29 18:18:52 +00:00
parent c7e7b9beda
commit 1b3d0eb992

View File

@ -845,6 +845,11 @@ public class Pop3Store extends Store
public void delete(boolean recurse) throws MessagingException
{
}
public void delete(Message[] msgs, String trashFolderName) throws MessagingException
{
setFlags(msgs, new Flag[] { Flag.DELETED }, true);
}
@Override
public String getUidFromMessageId(Message message) throws MessagingException