From 63aab1987d68e514f528a06f05b05bf39f8a2fc6 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 31 Dec 2025 16:34:20 +0000 Subject: [PATCH] feat: do not unconditionally watch mvbox for non-chatmail Since commit 25750de4e19296aba6915cf0c11d1b047aa56c8e released in 2.36.0 we do not move messages to mvbox without explicit mvbox_move setting, so do not need to watch it as well as long as other devices are updated to the same change. --- src/config.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index 6a377754f7..a320d16f3c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -598,8 +598,7 @@ impl Context { /// Returns true if movebox ("DeltaChat" folder) should be watched. pub(crate) async fn should_watch_mvbox(&self) -> Result { Ok(self.get_config_bool(Config::MvboxMove).await? - || self.get_config_bool(Config::OnlyFetchMvbox).await? - || !self.get_config_bool(Config::IsChatmail).await?) + || self.get_config_bool(Config::OnlyFetchMvbox).await?) } /// Returns true if sync messages should be sent.