]> git.r.bdr.sh - rbdr/olden-mail/commitdiff
Bump version
authorRuben Beltran del Rio <redacted>
Mon, 27 Jan 2025 15:56:13 +0000 (16:56 +0100)
committerRuben Beltran del Rio <redacted>
Mon, 27 Jan 2025 15:56:13 +0000 (16:56 +0100)
Cargo.lock
Cargo.toml
man/olden-mail.1
src/middleware/find_mailboxes_compatibility.rs

index c2c20fa9868cd76f9428b32d435ec77da8e269d2..4bd538437afb9b7c04c19c7516d6df371c53e317 100644 (file)
@@ -252,7 +252,7 @@ dependencies = [
 
 [[package]]
 name = "olden-mail"
 
 [[package]]
 name = "olden-mail"
-version = "1.0.1"
+version = "1.1.0"
 dependencies = [
  "ctrlc",
  "env_logger",
 dependencies = [
  "ctrlc",
  "env_logger",
index da235e74357558158a1e9bc7d78ed891b7d2646a..f07d44617fd5f429c6dbfd3bbf09732e2bdf62a7 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "olden-mail"
 [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."
 edition = "2021"
 license = "AGPL-3.0-or-later"
 description = "IMAP & SMTP proxy to connect vintage clients to modern e-mail."
index 30c681922db2dd2e13ec4e7cffdca45b285fee71..c4b708b78e362618d54eaf55859fb3d9567d6868 100644 (file)
@@ -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
 .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
 .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
 .SH HOMEPAGE
 .I https://r.bdr.sh/olden-mail.html
 .SH AUTHORS
index f1a450b514e8b41856bbfc736a211153a22f6847..04bc8343a8fe301b5610b7cfe8607ace146a9aba 100644 (file)
@@ -1,6 +1,6 @@
 use log::debug;
 
 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> {
 /// 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();
     }
         debug!("### {replacement}");
         return replacement.into_bytes();
     }
-    return input.to_vec();
+    input.to_vec()
 }
 }