Added POP3 option to leave messages on server

This commit is contained in:
M66B
2019-09-25 13:26:56 +02:00
parent 8e245517f3
commit 13997a0848
9 changed files with 1904 additions and 12 deletions

View File

@@ -55,7 +55,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
public Long id;
@NonNull
public Boolean pop = false; // obsolete
public Boolean pop = false;
@NonNull
public String host; // POP3/IMAP
@NonNull
@@ -85,7 +85,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
@NonNull
public Boolean notify = false;
@NonNull
public Boolean browse = true;
public Boolean browse = true; // Leave messages on server
@NonNull
public Boolean auto_seen = true;
public Character separator;