mirror of
https://github.com/M66B/FairEmail.git
synced 2026-05-04 14:47:01 +02:00
POP3 reload only if leave on server
This commit is contained in:
@@ -31,7 +31,7 @@ import java.util.Objects;
|
||||
value = TupleAccountView.query
|
||||
)
|
||||
public class TupleAccountView {
|
||||
static final String query = "SELECT id, pop, name, category, color, synchronize, notify, summary, leave_deleted, auto_seen, created FROM account";
|
||||
static final String query = "SELECT id, pop, name, category, color, synchronize, notify, summary, leave_on_server, leave_deleted, auto_seen, created FROM account";
|
||||
|
||||
@NonNull
|
||||
public Long id;
|
||||
@@ -48,6 +48,8 @@ public class TupleAccountView {
|
||||
@NonNull
|
||||
public Boolean summary = false;
|
||||
@NonNull
|
||||
public Boolean leave_on_server = true;
|
||||
@NonNull
|
||||
public Boolean leave_deleted = false;
|
||||
@NonNull
|
||||
public Boolean auto_seen = true;
|
||||
@@ -64,6 +66,7 @@ public class TupleAccountView {
|
||||
this.synchronize.equals(other.synchronize) &&
|
||||
this.notify.equals(other.notify) &&
|
||||
this.summary.equals(other.summary) &&
|
||||
this.leave_on_server.equals(other.leave_on_server) &&
|
||||
this.leave_deleted.equals(other.leave_deleted) &&
|
||||
this.auto_seen.equals(other.auto_seen) &&
|
||||
Objects.equals(this.created, other.created));
|
||||
|
||||
Reference in New Issue
Block a user