From 16c53637d93bffa8a2790fa5aef2a0a990021503 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Mon, 22 Jun 2020 13:47:47 +0200 Subject: [PATCH] update docs to new watch-settings behavior --- deltachat-ffi/deltachat.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index ec6e3d02e..e8e2cff4c 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -268,11 +268,14 @@ char* dc_get_blobdir (const dc_context_t* context); * - `mdns_enabled` = 0=do not send or request read receipts, * 1=send and request read receipts (default) * - `inbox_watch` = 1=watch `INBOX`-folder for changes (default), - * 0=do not watch the `INBOX`-folder + * 0=do not watch the `INBOX`-folder, + * changes require restarting IO by calling dc_stop_io() and then dc_start_io(). * - `sentbox_watch`= 1=watch `Sent`-folder for changes (default), - * 0=do not watch the `Sent`-folder + * 0=do not watch the `Sent`-folder, + * changes require restarting IO by calling dc_stop_io() and then dc_start_io(). * - `mvbox_watch` = 1=watch `DeltaChat`-folder for changes (default), - * 0=do not watch the `DeltaChat`-folder + * 0=do not watch the `DeltaChat`-folder, + * changes require restarting IO by calling dc_stop_io() and then dc_start_io(). * - `mvbox_move` = 1=heuristically detect chat-messages * and move them to the `DeltaChat`-folder, * 0=do not move chat-messages