From 3eddc9164cb32e6b0777bbfbc4d75da4f4cec94e Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 24 May 2023 22:01:58 +0000 Subject: [PATCH] fix: disable `fetch_existing_msgs` setting by default This caused too many problems after switching the default setting for `show_emails` from DC_SHOW_EMAILS_OFF to DC_SHOW_EMAILS_ALL in There is a topic on the forum with multiple requests to revert this setting due to old emails being downloaded. --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 035caf314..277adc6cb 100644 --- a/src/config.rs +++ b/src/config.rs @@ -145,7 +145,7 @@ pub enum Config { /// If set to "1", on the first time `start_io()` is called after configuring, /// the newest existing messages are fetched. /// Existing recipients are added to the contact database regardless of this setting. - #[strum(props(default = "1"))] + #[strum(props(default = "0"))] FetchExistingMsgs, /// If set to "1", then existing messages are considered to be already fetched.