Check if POP3 inbox closed

This commit is contained in:
M66B 2021-12-01 08:51:24 +01:00
parent ec69dc6680
commit c1ba2a2697
1 changed files with 10 additions and 2 deletions

View File

@ -216,8 +216,16 @@ class Core {
throw new IllegalArgumentException("Invalid folder=" + folder.id + "/" + op.folder);
if (account.protocol == EntityAccount.TYPE_IMAP &&
!folder.local && ifolder != null && !ifolder.isOpen()) {
Log.w(folder.name + " is closed");
!folder.local &&
ifolder != null && !ifolder.isOpen()) {
EntityLog.log(context, account.name + "/" + folder.name + " is closed");
return;
}
if (account.protocol == EntityAccount.TYPE_POP &&
EntityFolder.INBOX.equals(folder.type) &&
ifolder != null && !ifolder.isOpen()) {
EntityLog.log(context, account.name + "/" + folder.name + " is closed");
return;
}