diff --git a/scripts/update-provider-database.sh b/scripts/update-provider-database.sh index 4ad079fe8..615d57bd4 100755 --- a/scripts/update-provider-database.sh +++ b/scripts/update-provider-database.sh @@ -6,11 +6,11 @@ set -euo pipefail export TZ=UTC # Provider database revision. -REV=d041136c19a48b493823b46d472f12b9ee94ae80 +REV=b21726d0c895ae43251579707229792e1fb4d837 CORE_ROOT="$PWD" TMP="$(mktemp -d)" -git clone --filter=blob:none https://github.com/deltachat/provider-db.git "$TMP" +git clone --filter=blob:none https://github.com/chatmail/provider-db.git "$TMP" cd "$TMP" git checkout "$REV" DATE=$(git show -s --format=%cs) diff --git a/src/provider/data.rs b/src/provider/data.rs index bfd359f32..143518b50 100644 --- a/src/provider/data.rs +++ b/src/provider/data.rs @@ -505,16 +505,10 @@ static P_FIVE_CHAT: Provider = Provider { overview_page: "https://providers.delta.chat/five-chat", server: &[], opt: ProviderOptions::new(), - config_defaults: Some(&[ - ConfigDefault { - key: Config::BccSelf, - value: "1", - }, - ConfigDefault { - key: Config::MvboxMove, - value: "0", - }, - ]), + config_defaults: Some(&[ConfigDefault { + key: Config::BccSelf, + value: "1", + }]), oauth2_authorizer: None, }; @@ -564,7 +558,7 @@ static P_FREENET_DE: Provider = Provider { static P_GMAIL: Provider = Provider { id: "gmail", status: Status::Preparation, - before_login_hint: "For Gmail accounts, you need to have \"2-Step Verification\" enabled and create an app-password.", + before_login_hint: "For Gmail accounts, you need to have \"2-Step Verification\" enabled and create an app-password. Gmail limits how many messages you can send per day.", after_login_hint: "", overview_page: "https://providers.delta.chat/gmail", server: &[ @@ -1080,10 +1074,6 @@ static P_NAUTA_CU: Provider = Provider { key: Config::DeleteServerAfter, value: "1", }, - ConfigDefault { - key: Config::MvboxMove, - value: "0", - }, ConfigDefault { key: Config::MediaQuality, value: "1", @@ -1172,10 +1162,7 @@ static P_NINE_TESTRUN_ORG: Provider = Provider { }, ], opt: ProviderOptions::new(), - config_defaults: Some(&[ConfigDefault { - key: Config::MvboxMove, - value: "0", - }]), + config_defaults: None, oauth2_authorizer: None, }; @@ -1616,16 +1603,10 @@ static P_TESTRUN: Provider = Provider { }, ], opt: ProviderOptions::new(), - config_defaults: Some(&[ - ConfigDefault { - key: Config::BccSelf, - value: "1", - }, - ConfigDefault { - key: Config::MvboxMove, - value: "0", - }, - ]), + config_defaults: Some(&[ConfigDefault { + key: Config::BccSelf, + value: "1", + }]), oauth2_authorizer: None, }; @@ -1966,10 +1947,7 @@ static P_YGGMAIL: Provider = Provider { }, ], opt: ProviderOptions::new(), - config_defaults: Some(&[ConfigDefault { - key: Config::MvboxMove, - value: "0", - }]), + config_defaults: None, oauth2_authorizer: None, }; @@ -2647,4 +2625,4 @@ pub(crate) static PROVIDER_IDS: LazyLock = - LazyLock::new(|| chrono::NaiveDate::from_ymd_opt(2025, 9, 10).unwrap()); + LazyLock::new(|| chrono::NaiveDate::from_ymd_opt(2026, 1, 27).unwrap());