chore: rustfmt

This commit is contained in:
link2xt
2023-10-14 04:25:13 +00:00
parent a87635dcf4
commit da5d844ec4

View File

@@ -790,7 +790,10 @@ async fn send_mdn(context: &Context, smtp: &mut Smtp) -> Result<bool> {
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,))