mirror of
https://github.com/chatmail/core.git
synced 2026-05-02 21:06:31 +03:00
chore: update provider database
This commit is contained in:
@@ -6,11 +6,11 @@ set -euo pipefail
|
|||||||
export TZ=UTC
|
export TZ=UTC
|
||||||
|
|
||||||
# Provider database revision.
|
# Provider database revision.
|
||||||
REV=d041136c19a48b493823b46d472f12b9ee94ae80
|
REV=b21726d0c895ae43251579707229792e1fb4d837
|
||||||
|
|
||||||
CORE_ROOT="$PWD"
|
CORE_ROOT="$PWD"
|
||||||
TMP="$(mktemp -d)"
|
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"
|
cd "$TMP"
|
||||||
git checkout "$REV"
|
git checkout "$REV"
|
||||||
DATE=$(git show -s --format=%cs)
|
DATE=$(git show -s --format=%cs)
|
||||||
|
|||||||
@@ -505,16 +505,10 @@ static P_FIVE_CHAT: Provider = Provider {
|
|||||||
overview_page: "https://providers.delta.chat/five-chat",
|
overview_page: "https://providers.delta.chat/five-chat",
|
||||||
server: &[],
|
server: &[],
|
||||||
opt: ProviderOptions::new(),
|
opt: ProviderOptions::new(),
|
||||||
config_defaults: Some(&[
|
config_defaults: Some(&[ConfigDefault {
|
||||||
ConfigDefault {
|
key: Config::BccSelf,
|
||||||
key: Config::BccSelf,
|
value: "1",
|
||||||
value: "1",
|
}]),
|
||||||
},
|
|
||||||
ConfigDefault {
|
|
||||||
key: Config::MvboxMove,
|
|
||||||
value: "0",
|
|
||||||
},
|
|
||||||
]),
|
|
||||||
oauth2_authorizer: None,
|
oauth2_authorizer: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -564,7 +558,7 @@ static P_FREENET_DE: Provider = Provider {
|
|||||||
static P_GMAIL: Provider = Provider {
|
static P_GMAIL: Provider = Provider {
|
||||||
id: "gmail",
|
id: "gmail",
|
||||||
status: Status::Preparation,
|
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: "",
|
after_login_hint: "",
|
||||||
overview_page: "https://providers.delta.chat/gmail",
|
overview_page: "https://providers.delta.chat/gmail",
|
||||||
server: &[
|
server: &[
|
||||||
@@ -1080,10 +1074,6 @@ static P_NAUTA_CU: Provider = Provider {
|
|||||||
key: Config::DeleteServerAfter,
|
key: Config::DeleteServerAfter,
|
||||||
value: "1",
|
value: "1",
|
||||||
},
|
},
|
||||||
ConfigDefault {
|
|
||||||
key: Config::MvboxMove,
|
|
||||||
value: "0",
|
|
||||||
},
|
|
||||||
ConfigDefault {
|
ConfigDefault {
|
||||||
key: Config::MediaQuality,
|
key: Config::MediaQuality,
|
||||||
value: "1",
|
value: "1",
|
||||||
@@ -1172,10 +1162,7 @@ static P_NINE_TESTRUN_ORG: Provider = Provider {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
opt: ProviderOptions::new(),
|
opt: ProviderOptions::new(),
|
||||||
config_defaults: Some(&[ConfigDefault {
|
config_defaults: None,
|
||||||
key: Config::MvboxMove,
|
|
||||||
value: "0",
|
|
||||||
}]),
|
|
||||||
oauth2_authorizer: None,
|
oauth2_authorizer: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1616,16 +1603,10 @@ static P_TESTRUN: Provider = Provider {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
opt: ProviderOptions::new(),
|
opt: ProviderOptions::new(),
|
||||||
config_defaults: Some(&[
|
config_defaults: Some(&[ConfigDefault {
|
||||||
ConfigDefault {
|
key: Config::BccSelf,
|
||||||
key: Config::BccSelf,
|
value: "1",
|
||||||
value: "1",
|
}]),
|
||||||
},
|
|
||||||
ConfigDefault {
|
|
||||||
key: Config::MvboxMove,
|
|
||||||
value: "0",
|
|
||||||
},
|
|
||||||
]),
|
|
||||||
oauth2_authorizer: None,
|
oauth2_authorizer: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1966,10 +1947,7 @@ static P_YGGMAIL: Provider = Provider {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
opt: ProviderOptions::new(),
|
opt: ProviderOptions::new(),
|
||||||
config_defaults: Some(&[ConfigDefault {
|
config_defaults: None,
|
||||||
key: Config::MvboxMove,
|
|
||||||
value: "0",
|
|
||||||
}]),
|
|
||||||
oauth2_authorizer: None,
|
oauth2_authorizer: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2647,4 +2625,4 @@ pub(crate) static PROVIDER_IDS: LazyLock<HashMap<&'static str, &'static Provider
|
|||||||
});
|
});
|
||||||
|
|
||||||
pub static _PROVIDER_UPDATED: LazyLock<chrono::NaiveDate> =
|
pub static _PROVIDER_UPDATED: LazyLock<chrono::NaiveDate> =
|
||||||
LazyLock::new(|| chrono::NaiveDate::from_ymd_opt(2025, 9, 10).unwrap());
|
LazyLock::new(|| chrono::NaiveDate::from_ymd_opt(2026, 1, 27).unwrap());
|
||||||
|
|||||||
Reference in New Issue
Block a user