mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 09:33:39 +02:00
Reduced check open frequency
This commit is contained in:
@@ -215,10 +215,21 @@ class Core {
|
||||
if (!Objects.equals(folder.id, op.folder))
|
||||
throw new IllegalArgumentException("Invalid folder=" + folder.id + "/" + op.folder);
|
||||
|
||||
if (account.protocol == EntityAccount.TYPE_IMAP &&
|
||||
!folder.local &&
|
||||
ifolder != null && !ifolder.isOpen())
|
||||
throw new FolderClosedException(ifolder, account.name + "/" + folder.name + " unexpectedly closed");
|
||||
if (account.protocol == EntityAccount.TYPE_IMAP && !folder.local && ifolder != null) {
|
||||
try {
|
||||
((IMAPFolder) ifolder).doCommand(new IMAPFolder.ProtocolCommand() {
|
||||
@Override
|
||||
public Object doCommand(IMAPProtocol protocol) throws ProtocolException {
|
||||
long ago = System.currentTimeMillis() - protocol.getTimestamp();
|
||||
if (ago > 20000)
|
||||
protocol.noop();
|
||||
return null;
|
||||
}
|
||||
});
|
||||
} catch (MessagingException ex) {
|
||||
throw new FolderClosedException(ifolder, account.name + "/" + folder.name + " unexpectedly closed", ex);
|
||||
}
|
||||
}
|
||||
|
||||
if (account.protocol == EntityAccount.TYPE_POP &&
|
||||
EntityFolder.INBOX.equals(folder.type) &&
|
||||
|
||||
Reference in New Issue
Block a user