-.TH OLDEN-MAIL 1 "2025-01-25" "1.0.0" "Olden Mail Manual"
+.TH OLDEN-MAIL 1 "2025-01-25" "1.0.1" "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.0
+.BR 1.0.1
.SH HOMEPAGE
.I https://r.bdr.sh/olden-mail.html
.SH AUTHORS
let mut buffer = [0u8; 8192];
let mut client_reader = client_stream;
loop {
- debug!(">");
let bytes_read = match client_reader.read(&mut buffer) {
Ok(0) => break,
Ok(n) => n,
let mut buffer = [0u8; 8192];
let mut client_writer = client_stream_clone;
loop {
- debug!("<");
// Lock the TLS stream and read from the server
let bytes_read = match tls_stream_clone.lock() {
Ok(mut tls_guard) => match tls_guard.read(&mut buffer) {