diff --git a/proxmox-notify/src/endpoints/smtp.rs b/proxmox-notify/src/endpoints/smtp.rs index 6bb2d2d0..b88e6c95 100644 --- a/proxmox-notify/src/endpoints/smtp.rs +++ b/proxmox-notify/src/endpoints/smtp.rs @@ -254,6 +254,7 @@ impl Endpoint for SmtpEndpoint { Content::ForwardedMail { ref raw, title, .. } => { use lettre::message::header::ContentTransferEncoding; use lettre::message::Body; + use tracing::error; let parsed_message = mail_parser::Message::parse(raw) .ok_or_else(|| Error::Generic("could not parse forwarded email".to_string()))?;