mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-30 09:31:11 +01:00
Added folder setting to disable automatically downloading of message texts and attachments
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user