mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-28 00:20:50 +01:00
Ensure outbox
This commit is contained in:
@@ -221,6 +221,16 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
||||
}
|
||||
}
|
||||
|
||||
static EntityFolder getOutbox() {
|
||||
EntityFolder outbox = new EntityFolder();
|
||||
outbox.name = "OUTBOX";
|
||||
outbox.type = EntityFolder.OUTBOX;
|
||||
outbox.synchronize = false;
|
||||
outbox.sync_days = 0;
|
||||
outbox.keep_days = 0;
|
||||
return outbox;
|
||||
}
|
||||
|
||||
static String getNotificationChannelId(long id) {
|
||||
return "notification.folder." + id;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user