Added folder setting to disable automatically downloading of message texts and attachments

This commit is contained in:
M66B
2018-12-14 12:31:25 +01:00
parent ae9d35c084
commit e49d09ab9c
8 changed files with 1347 additions and 76 deletions

View File

@@ -167,17 +167,18 @@ public interface DaoFolder {
" SET name = :name" +
", display = :display" +
", unified = :unified" +
", notify = :notify" +
", hide = :hide" +
", synchronize = :synchronize" +
", poll = :poll" +
", notify = :notify" +
", download = :download" +
", `sync_days` = :sync_days" +
", `keep_days` = :keep_days" +
" WHERE id = :id")
int setFolderProperties(
long id,
String name, String display, boolean unified, boolean hide,
boolean synchronize, boolean poll, boolean notify,
String name, String display, boolean unified, boolean notify, boolean hide,
boolean synchronize, boolean poll, boolean download,
int sync_days, int keep_days);
@Query("UPDATE folder SET keywords = :keywords WHERE id = :id")