mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-28 08:32:16 +01:00
Removed POP3 support
There are too many disadvantages likely resulting in too many support questions
This commit is contained in:
@@ -24,7 +24,6 @@ import androidx.room.Ignore;
|
||||
public class TupleMessageEx extends EntityMessage {
|
||||
public String accountName;
|
||||
public Integer accountColor;
|
||||
public boolean accountPop;
|
||||
public boolean accountNotify;
|
||||
public String folderName;
|
||||
public String folderDisplay;
|
||||
@@ -48,7 +47,6 @@ public class TupleMessageEx extends EntityMessage {
|
||||
return (super.uiEquals(obj) &&
|
||||
(this.accountName == null ? other.accountName == null : this.accountName.equals(other.accountName)) &&
|
||||
(this.accountColor == null ? other.accountColor == null : this.accountColor.equals(other.accountColor)) &&
|
||||
this.accountPop == other.accountPop &&
|
||||
//this.accountNotify == other.accountNotify &&
|
||||
this.folderName.equals(other.folderName) &&
|
||||
(this.folderDisplay == null ? other.folderDisplay == null : this.folderDisplay.equals(other.folderDisplay)) &&
|
||||
@@ -74,7 +72,6 @@ public class TupleMessageEx extends EntityMessage {
|
||||
return (super.equals(obj) &&
|
||||
(this.accountName == null ? other.accountName == null : this.accountName.equals(other.accountName)) &&
|
||||
(this.accountColor == null ? other.accountColor == null : this.accountColor.equals(other.accountColor)) &&
|
||||
this.accountPop == other.accountPop &&
|
||||
this.accountNotify == other.accountNotify &&
|
||||
this.folderName.equals(other.folderName) &&
|
||||
(this.folderDisplay == null ? other.folderDisplay == null : this.folderDisplay.equals(other.folderDisplay)) &&
|
||||
|
||||
Reference in New Issue
Block a user