1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

a slight cleanup for message deletioon policy logic.

This commit is contained in:
Jesse Vincent 2010-11-14 00:49:15 +00:00
parent 0eee80f08b
commit 945d4d7c32

View File

@ -4042,15 +4042,17 @@ public class MessagingController implements Runnable
}
processPendingCommands(account);
}
else if (folder.equals(account.getTrashFolderName()) && account.getDeletePolicy() == Account.DELETE_POLICY_ON_DELETE)
else if ( account.getDeletePolicy() == Account.DELETE_POLICY_ON_DELETE)
{
queueSetFlag(account, folder, Boolean.toString(true), Flag.DELETED.toString(), uids);
processPendingCommands(account);
}
else if (account.getDeletePolicy() == Account.DELETE_POLICY_ON_DELETE)
{
queueMoveOrCopy(account, folder, account.getTrashFolderName(), false, uids);
processPendingCommands(account);
if (folder.equals(account.getTrashFolderName()))
{
queueSetFlag(account, folder, Boolean.toString(true), Flag.DELETED.toString(), uids);
}
else
{
queueMoveOrCopy(account, folder, account.getTrashFolderName(), false, uids);
}
processPendingCommands(account);
}
else if (account.getDeletePolicy() == Account.DELETE_POLICY_MARK_AS_READ)
{