Don't watch Sent folder by default

This commit is contained in:
link2xt
2022-01-29 11:35:02 +00:00
parent e411c394ca
commit 2690fa2da5
3 changed files with 6 additions and 3 deletions

View File

@@ -5,6 +5,9 @@
### Fixes
- run migrations on backup import #3006
### Changes
- don't watch Sent folder by default #3025
## 1.71.0

View File

@@ -335,8 +335,8 @@ char* dc_get_blobdir (const dc_context_t* context);
* 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.
* - `sentbox_watch`= 1=watch `Sent`-folder for changes (default),
* 0=do not watch the `Sent`-folder,
* - `sentbox_watch`= 1=watch `Sent`-folder for changes,
* 0=do not watch the `Sent`-folder (default),
* changes require restarting IO by calling dc_stop_io() and then dc_start_io().
* - `mvbox_move` = 1=detect chat messages,
* move them to the `DeltaChat` folder,

View File

@@ -65,7 +65,7 @@ pub enum Config {
#[strum(props(default = "1"))]
MdnsEnabled,
#[strum(props(default = "1"))]
#[strum(props(default = "0"))]
SentboxWatch,
#[strum(props(default = "1"))]