POP3 support

This commit is contained in:
M66B
2019-09-19 17:41:26 +02:00
parent 70cce65e61
commit 0604a1b077
24 changed files with 1304 additions and 151 deletions

View File

@@ -79,7 +79,6 @@ public class EntityOperation {
static final String COPY = "copy";
static final String FETCH = "fetch";
static final String DELETE = "delete";
static final String DELETED = "deleted";
static final String SEEN = "seen";
static final String ANSWERED = "answered";
static final String FLAG = "flag";
@@ -228,7 +227,7 @@ public class EntityOperation {
name = RAW;
} else if (DELETE.equals(name))
db.message().setMessageUiHide(message.id, new Date().getTime());
db.message().setMessageUiHide(message.id, Long.MAX_VALUE);
} catch (JSONException ex) {
Log.e(ex);