Autofix too many simultaneous connections

This commit is contained in:
M66B
2020-10-30 09:14:20 +01:00
parent fffb5b2dba
commit c6243c1bd3
2 changed files with 34 additions and 16 deletions

View File

@@ -206,7 +206,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
static final int DEFAULT_KEEP = 30; // days
static final int DEFAULT_KEEP_DRAFTS = 180; // days
static final List<String> SYSTEM_FOLDER_SYNC = Collections.unmodifiableList(Arrays.asList(
private static final List<String> SYSTEM_FOLDER_SYNC = Collections.unmodifiableList(Arrays.asList(
INBOX,
DRAFTS,
SENT,
@@ -214,7 +214,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
TRASH,
JUNK
));
static final List<Boolean> SYSTEM_FOLDER_POLL = Collections.unmodifiableList(Arrays.asList(
private static final List<Boolean> SYSTEM_FOLDER_POLL = Collections.unmodifiableList(Arrays.asList(
false, // inbox
false, // drafts
false, // sent
@@ -222,7 +222,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
true, // trash
true // junk
)); // MUST match SYSTEM_FOLDER_SYNC
static final List<Boolean> SYSTEM_FOLDER_DOWNLOAD = Collections.unmodifiableList(Arrays.asList(
private static final List<Boolean> SYSTEM_FOLDER_DOWNLOAD = Collections.unmodifiableList(Arrays.asList(
true, // inbox
true, // drafts
false, // sent