From 73e695537af311e0a6aa87b13ebfab1206417b7c Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Mon, 22 Jun 2020 19:48:51 +0200 Subject: [PATCH] add missing doc for bcc_self --- deltachat-ffi/deltachat.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index 56155df0e..0df5859df 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -268,6 +268,10 @@ char* dc_get_blobdir (const dc_context_t* context); * - `e2ee_enabled` = 0=no end-to-end-encryption, 1=prefer end-to-end-encryption (default) * - `mdns_enabled` = 0=do not send or request read receipts, * 1=send and request read receipts (default) + * - `bcc_self` = 0=do not send a copy of outgoing messages to self (default), + * 1=send a copy of outgoing messages to self. + * Sending messages to self is needed for a proper multi-account setup, + * however, on the other hand, may lead to unwanted notifications in non-delta clients. * - `inbox_watch` = 1=watch `INBOX`-folder for changes (default), * 0=do not watch the `INBOX`-folder, * changes require restarting IO by calling dc_stop_io() and then dc_start_io().