Default no download for archive, trash and junk

This commit is contained in:
M66B
2019-01-05 07:52:08 +00:00
parent 6dcac8ff91
commit 988973135d
3 changed files with 13 additions and 2 deletions

View File

@@ -149,6 +149,13 @@ public class EntityFolder implements Serializable {
TRASH,
JUNK
);
static final List<Boolean> SYSTEM_FOLDER_DOWNLOAD = Arrays.asList(
true, // drafts
true, // sent
false, // archive
false, // trash
false // junk
); // MUST match SYSTEM_FOLDER_SYNC
public EntityFolder() {
}