From da5d844ec4fb903b94fcce36420299d04c6b7d47 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 14 Oct 2023 04:25:13 +0000 Subject: [PATCH] chore: rustfmt --- src/smtp.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/smtp.rs b/src/smtp.rs index de9b8915b..f2998b8cc 100644 --- a/src/smtp.rs +++ b/src/smtp.rs @@ -790,7 +790,10 @@ async fn send_mdn(context: &Context, smtp: &mut Smtp) -> Result { if let Err(ref err) = res { // If there is an error, for example there is no message corresponding to the msg_id in the // database, do not try to send this MDN again. - warn!(context, "Error sending MDN for {msg_id}, removing it: {err:#}."); + warn!( + context, + "Error sending MDN for {msg_id}, removing it: {err:#}." + ); context .sql .execute("DELETE FROM smtp_mdns WHERE msg_id = ?", (msg_id,))