diff options
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | man/olden-mail.1 | 4 | ||||
| -rw-r--r-- | src/middleware/find_mailboxes_compatibility.rs | 4 |
4 files changed, 6 insertions, 6 deletions
@@ -252,7 +252,7 @@ dependencies = [ [[package]] name = "olden-mail" -version = "1.0.1" +version = "1.1.0" dependencies = [ "ctrlc", "env_logger", @@ -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<u8> { @@ -10,5 +10,5 @@ pub fn middleware(input: &[u8]) -> Vec<u8> { debug!("### {replacement}"); return replacement.into_bytes(); } - return input.to_vec(); + input.to_vec() } |