]> git.r.bdr.sh - rbdr/olden-mail/commitdiff
Remove unhelpful debug lines 1.0.1
authorRuben Beltran del Rio <redacted>
Sun, 26 Jan 2025 19:56:33 +0000 (20:56 +0100)
committerRuben Beltran del Rio <redacted>
Sun, 26 Jan 2025 19:56:33 +0000 (20:56 +0100)
Cargo.lock
Cargo.toml
man/olden-mail.1
src/proxy.rs

index 648d4b46a3ef8959f87cf0280dc0e030a74adb87..c2c20fa9868cd76f9428b32d435ec77da8e269d2 100644 (file)
@@ -252,7 +252,7 @@ dependencies = [
 
 [[package]]
 name = "olden-mail"
-version = "1.0.0"
+version = "1.0.1"
 dependencies = [
  "ctrlc",
  "env_logger",
index 1205d332e8859c8d3816e2b8cb0d1ba480a910dc..da235e74357558158a1e9bc7d78ed891b7d2646a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "olden-mail"
-version = "1.0.0"
+version = "1.0.1"
 edition = "2021"
 license = "AGPL-3.0-or-later"
 description = "IMAP & SMTP proxy to connect vintage clients to modern e-mail."
index e72a08ee453baac07f6d06f6fa2350f5af6c55ec..30c681922db2dd2e13ec4e7cffdca45b285fee71 100644 (file)
@@ -1,4 +1,4 @@
-.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
@@ -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.0
+.BR 1.0.1
 .SH HOMEPAGE
 .I https://r.bdr.sh/olden-mail.html
 .SH AUTHORS
index 15a2e7d19736e52330e01661971fb2d907179cd7..255101531ad92be0a52e73d23d55a7bdc1998ea6 100644 (file)
@@ -213,7 +213,6 @@ fn handle_client(client_stream: TcpStream, configuration: &Arc<Proxy>) {
         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,
@@ -260,7 +259,6 @@ fn handle_client(client_stream: TcpStream, configuration: &Arc<Proxy>) {
         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) {