POP3: reversed message order support

This commit is contained in:
M66B
2023-02-15 17:37:15 +01:00
parent 89f2cee08c
commit 22f4725be0
7 changed files with 30 additions and 19 deletions

View File

@@ -58,7 +58,6 @@ public class EntityAccount extends EntityOrder implements Serializable {
// https://tools.ietf.org/html/rfc2177
static final int DEFAULT_KEEP_ALIVE_INTERVAL = 15; // minutes
static final int DEFAULT_POLL_INTERVAL = 15; // minutes
static final int DEFAULT_MAX_MESSAGES = 250; // POP3
static final int QUOTA_WARNING = 95; // percent
@@ -120,7 +119,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
public Boolean leave_deleted = false;
@NonNull
public Boolean leave_on_device = false;
public Integer max_messages; // POP3
public Integer max_messages = null; // POP3
@NonNull
public Boolean auto_seen = true;
@ColumnInfo(name = "separator")