Skip to content

Commit

Permalink
chore: update provider database
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed Aug 23, 2024
1 parent 6b3de9d commit ef12a76
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
2 changes: 1 addition & 1 deletion scripts/update-provider-database.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -euo pipefail
export TZ=UTC

# Provider database revision.
REV=05c1b2029da74718e4bdc3799a46e29c4f794dc7
REV=ab970e40d3979893c3bb6a93030e1a52223d7db6

CORE_ROOT="$PWD"
TMP="$(mktemp -d)"
Expand Down
36 changes: 25 additions & 11 deletions src/provider/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,20 @@ static P_MEHL_CLOUD: Provider = Provider {
after_login_hint: "",
overview_page: "https://providers.delta.chat/mehl-cloud",
server: &[
Server {
protocol: Imap,
socket: Ssl,
hostname: "mehl.cloud",
port: 443,
username_pattern: Email,
},
Server {
protocol: Smtp,
socket: Ssl,
hostname: "mehl.cloud",
port: 443,
username_pattern: Email,
},
Server {
protocol: Imap,
socket: Ssl,
Expand Down Expand Up @@ -1013,42 +1027,42 @@ static P_NINE_TESTRUN_ORG: Provider = Provider {
protocol: Imap,
socket: Ssl,
hostname: "nine.testrun.org",
port: 993,
port: 443,
username_pattern: Email,
},
Server {
protocol: Smtp,
socket: Ssl,
hostname: "nine.testrun.org",
port: 465,
port: 443,
username_pattern: Email,
},
Server {
protocol: Imap,
socket: Starttls,
socket: Ssl,
hostname: "nine.testrun.org",
port: 143,
port: 993,
username_pattern: Email,
},
Server {
protocol: Smtp,
socket: Starttls,
socket: Ssl,
hostname: "nine.testrun.org",
port: 587,
port: 465,
username_pattern: Email,
},
Server {
protocol: Imap,
socket: Ssl,
socket: Starttls,
hostname: "nine.testrun.org",
port: 443,
port: 143,
username_pattern: Email,
},
Server {
protocol: Smtp,
socket: Ssl,
socket: Starttls,
hostname: "nine.testrun.org",
port: 443,
port: 587,
username_pattern: Email,
},
],
Expand Down Expand Up @@ -2417,4 +2431,4 @@ pub(crate) static PROVIDER_IDS: Lazy<HashMap<&'static str, &'static Provider>> =
});

pub static _PROVIDER_UPDATED: Lazy<chrono::NaiveDate> =
Lazy::new(|| chrono::NaiveDate::from_ymd_opt(2024, 8, 14).unwrap());
Lazy::new(|| chrono::NaiveDate::from_ymd_opt(2024, 8, 23).unwrap());

0 comments on commit ef12a76

Please sign in to comment.