From cab16fc8f1f6223c84ee0922b7f95f9405b815d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jagoda=20Estera=20=C5=9Al=C4=85zak?= <128227338+j-g00da@users.noreply.github.com> Date: Thu, 22 Jan 2026 15:14:28 +0100 Subject: [PATCH] fix: Make inbound/outbound log messages consistent (#23) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jagoda Ślązak --- filtermail/src/inbound.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filtermail/src/inbound.rs b/filtermail/src/inbound.rs index 9f1623fc..def5d2cb 100644 --- a/filtermail/src/inbound.rs +++ b/filtermail/src/inbound.rs @@ -72,7 +72,7 @@ impl SmtpHandler for IncomingBeforeQueueHandler { for recipient in &envelope.rcpt_to { if !self.config.is_cleartext_ok(recipient) { - log::warn!("Rejected unencrypted email from: {}", envelope.mail_from); + log::warn!("Rejected unencrypted mail from: {}", envelope.mail_from); return Err(ENCRYPTION_NEEDED_523.to_string()); } }