Update all instances of old domains with meli-email.org

Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
pull/369/head
Manos Pitsidianakis 3 months ago
parent e481880321
commit b8b24282a0
No known key found for this signature in database
GPG Key ID: 7729C7707F7E09D0

File diff suppressed because it is too large Load Diff

@ -22,10 +22,10 @@ body = """
{% if not version %} {% if not version %}
## [Unreleased] ## [Unreleased]
{% else %} {% else %}
## [{{ version }}](https://git.meliemail.org/meli/meli/releases/tag/{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }} ## [{{ version }}](https://git.meli-email.org/meli/meli/releases/tag/{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
{% endif %} {% endif %}
{% macro commit(commit) -%} {% macro commit(commit) -%}
- [{{ commit.id | truncate(length=8, end="") }}]({{ "https://git.meliemail.org/meli/meli/commit/" ~ commit.id }}) {% if commit.scope %}*({{commit.scope | lower }})* {% endif %}{{ commit.message | split(pat="\n")| first | upper_first }}{% endmacro -%} - [{{ commit.id | truncate(length=8, end="") }}]({{ "https://git.meli-email.org/meli/meli/commit/" ~ commit.id }}) {% if commit.scope %}*({{commit.scope | lower }})* {% endif %}{{ commit.message | split(pat="\n")| first | upper_first }}{% endmacro -%}
{% for group, commits in commits | group_by(attribute="group") %} {% for group, commits in commits | group_by(attribute="group") %}
### {{ group | striptags | trim | upper_first }} ### {{ group | striptags | trim | upper_first }}
@ -58,7 +58,7 @@ filter_unconventional = false
split_commits = false split_commits = false
# regex for preprocessing the commit messages # regex for preprocessing the commit messages
commit_preprocessors = [ commit_preprocessors = [
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://git.meliemail.org/meli/meli/issues/${2}))" }, { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://git.meli-email.org/meli/meli/issues/${2}))" },
] ]
# regex for parsing and grouping commits # regex for parsing and grouping commits
commit_parsers = [ commit_parsers = [

2
debian/copyright vendored

@ -1,6 +1,6 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: meli Upstream-Name: meli
Source: https://git.meliemail.org/meli/meli Source: https://git.meli-email.org/meli/meli
# #
# Please double check copyright with the licensecheck(1) command. # Please double check copyright with the licensecheck(1) command.

@ -2,6 +2,6 @@ WARNING: This package is not distributed by debian, it was generated from the so
Please do not report bugs to debian, but to the appropriate issue tracker for meli: Please do not report bugs to debian, but to the appropriate issue tracker for meli:
- https://git.meliemail.org/meli/meli/issues - https://git.meli-email.org/meli/meli/issues
- Send e-mail to the mailing list, "meli general" <meli-general@meliemail.org> - Send e-mail to the mailing list, "meli general" <meli-general@meli-email.org>
https://lists.meliemail.org/list/meli-general/ https://lists.meli-email.org/list/meli-general/

@ -6,8 +6,8 @@ edition = "2021"
build = "build.rs" build = "build.rs"
rust-version = "1.68.2" rust-version = "1.68.2"
homepage = "https://meli.delivery" homepage = "https://meli-email.org"
repository = "https://git.meli.delivery/meli/meli.git" repository = "https://git.meli-email.org/meli/meli.git"
description = "library for e-mail clients and other e-mail applications" description = "library for e-mail clients and other e-mail applications"
keywords = ["mail", "mua", "maildir", "imap", "jmap"] keywords = ["mail", "mua", "maildir", "imap", "jmap"]
categories = ["email", "parser-implementations"] categories = ["email", "parser-implementations"]

@ -302,7 +302,7 @@ impl SmtpConnection {
} }
} }
if !matches!(server_conf.security, SmtpSecurity::Tls { .. }) { if !matches!(server_conf.security, SmtpSecurity::Tls { .. }) {
socket.write_all(b"EHLO meli.delivery\r\n").await?; socket.write_all(b"EHLO meli-email.org\r\n").await?;
} }
if matches!(server_conf.security, SmtpSecurity::StartTLS { .. }) { if matches!(server_conf.security, SmtpSecurity::StartTLS { .. }) {
let pre_tls_extensions_reply = read_lines( let pre_tls_extensions_reply = read_lines(
@ -376,7 +376,7 @@ impl SmtpConnection {
.await?; .await?;
drop(pre_ehlo_extensions_reply); drop(pre_ehlo_extensions_reply);
} }
ret.write_all(b"EHLO meli.delivery\r\n").await?; ret.write_all(b"EHLO meli-email.org\r\n").await?;
ret ret
} }
SmtpSecurity::None => { SmtpSecurity::None => {
@ -412,7 +412,7 @@ impl SmtpConnection {
Reply::new(&res, code) Reply::new(&res, code)
))); )));
} }
ret.write_all(b"EHLO meli.delivery\r\n").await?; ret.write_all(b"EHLO meli-email.org\r\n").await?;
ret ret
} }
}; };
@ -536,7 +536,7 @@ impl SmtpConnection {
ret.read_lines(&mut res, Some((ReplyCode::_235, &[]))) ret.read_lines(&mut res, Some((ReplyCode::_235, &[])))
.await .await
.chain_err_kind(crate::error::ErrorKind::Authentication)?; .chain_err_kind(crate::error::ErrorKind::Authentication)?;
ret.send_command(&[b"EHLO meli.delivery"]).await?; ret.send_command(&[b"EHLO meli-email.org"]).await?;
} }
SmtpAuth::XOAuth2 { token_command, .. } => { SmtpAuth::XOAuth2 { token_command, .. } => {
let password_token = { let password_token = {
@ -569,7 +569,7 @@ impl SmtpConnection {
ret.read_lines(&mut res, Some((ReplyCode::_235, &[]))) ret.read_lines(&mut res, Some((ReplyCode::_235, &[])))
.await .await
.chain_err_kind(crate::error::ErrorKind::Authentication)?; .chain_err_kind(crate::error::ErrorKind::Authentication)?;
ret.send_command(&[b"EHLO meli.delivery"]).await?; ret.send_command(&[b"EHLO meli-email.org"]).await?;
} }
} }
{ {

@ -6,8 +6,8 @@ edition = "2018"
rust-version = "1.65.0" rust-version = "1.65.0"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
homepage = "https://meli.delivery" homepage = "https://meli-email.org"
repository = "https://git.meli.delivery/meli/meli.git" repository = "https://git.meli-email.org/meli/meli.git"
publish = false publish = false
[[bin]] [[bin]]

Loading…
Cancel
Save