[[package]]
name = "olden-mail"
-version = "1.0.1"
+version = "1.1.0"
dependencies = [
"ctrlc",
"env_logger",
[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."
-.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
.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
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> {
debug!("### {replacement}");
return replacement.into_bytes();
}
- return input.to_vec();
+ input.to_vec()
}