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()); } }