mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-28 16:40:53 +01:00
Autofix too many simultaneous connections
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user