From: Ruben Beltran del Rio Date: Mon, 27 Jan 2025 15:56:13 +0000 (+0100) Subject: Bump version X-Git-Tag: 1.1.0~19 X-Git-Url: https://git.r.bdr.sh/rbdr/olden-mail/commitdiff_plain/408fda8d8b94fdfd9ad9b9b07faa9716df3d7346?ds=sidebyside;hp=573aaf2a8ccdb6c8c917b2d88a39c9c8103f64ef Bump version --- diff --git a/Cargo.lock b/Cargo.lock index c2c20fa..4bd5384 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -252,7 +252,7 @@ dependencies = [ [[package]] name = "olden-mail" -version = "1.0.1" +version = "1.1.0" dependencies = [ "ctrlc", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index da235e7..f07d446 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "olden-mail" -version = "1.0.1" +version = "1.1.0" edition = "2021" license = "AGPL-3.0-or-later" description = "IMAP & SMTP proxy to connect vintage clients to modern e-mail." diff --git a/man/olden-mail.1 b/man/olden-mail.1 index 30c6819..c4b708b 100644 --- a/man/olden-mail.1 +++ b/man/olden-mail.1 @@ -1,4 +1,4 @@ -.TH OLDEN-MAIL 1 "2025-01-25" "1.0.1" "Olden Mail Manual" +.TH OLDEN-MAIL 1 "2025-01-25" "1.1.0" "Olden Mail Manual" .SH NAME olden-mail \- IMAP & SMTP proxy to connect vintage clients to modern e-mail. .SH SYNOPSIS @@ -37,7 +37,7 @@ The TLS enabled remote port to which we will proxy the connection. Defaults to .B REMOTE_SMTP_HOST The remote host to which we will proxy the connection. Required. .SH VERSION -.BR 1.0.1 +.BR 1.1.0 .SH HOMEPAGE .I https://r.bdr.sh/olden-mail.html .SH AUTHORS diff --git a/src/middleware/find_mailboxes_compatibility.rs b/src/middleware/find_mailboxes_compatibility.rs index f1a450b..04bc834 100644 --- a/src/middleware/find_mailboxes_compatibility.rs +++ b/src/middleware/find_mailboxes_compatibility.rs @@ -1,6 +1,6 @@ use log::debug; -/// MailDrop can't find folders to sync because it sends FIND MAILBOXES /* +/// `MailDrop` can't find folders to sync because it sends FIND MAILBOXES /* /// which is not understood by modern servers. It instead replaces it with /// a LIST command. pub fn middleware(input: &[u8]) -> Vec { @@ -10,5 +10,5 @@ pub fn middleware(input: &[u8]) -> Vec { debug!("### {replacement}"); return replacement.into_bytes(); } - return input.to_vec(); + input.to_vec() }