From ee3356c3940ad3fadb270305cc28bac4e7607286 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 16fac5de7..7fa1b3686 100644 --- a/src/config.rs +++ b/src/config.rs @@ -597,8 +597,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.