Basic POP3 support

This commit is contained in:
M66B
2019-02-09 21:03:53 +00:00
parent e64178d530
commit e7dd1a01b1
18 changed files with 1810 additions and 78 deletions

View File

@@ -22,6 +22,7 @@ package eu.faircode.email;
public class TupleFolderEx extends EntityFolder {
public String accountName;
public Integer accountColor;
public boolean accountPop;
public String accountState;
public int messages;
public int content;
@@ -34,6 +35,7 @@ public class TupleFolderEx extends EntityFolder {
return (super.equals(obj) &&
(this.accountName == null ? other.accountName == null : accountName.equals(other.accountName)) &&
(this.accountColor == null ? other.accountColor == null : this.accountColor.equals(other.accountColor)) &&
this.accountPop == other.accountPop &&
(this.accountState == null ? other.accountState == null : accountState.equals(other.accountState)) &&
this.messages == other.messages &&
this.content == other.content &&