From a42875d033557c118446f746f565e7b581b95a09 Mon Sep 17 00:00:00 2001 From: Arne Welzel Date: Sat, 12 Jul 2025 17:13:32 +0200 Subject: [PATCH] SMTP: Add missing Undelivered() call Not that it's implement, but for consistency. --- src/analyzer/protocol/smtp/SMTP.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/analyzer/protocol/smtp/SMTP.cc b/src/analyzer/protocol/smtp/SMTP.cc index 8b7a925df4..150aace6c8 100644 --- a/src/analyzer/protocol/smtp/SMTP.cc +++ b/src/analyzer/protocol/smtp/SMTP.cc @@ -90,6 +90,9 @@ void SMTP_Analyzer::Undelivered(uint64_t seq, int len, bool is_orig) { if ( mail ) mail->Undelivered(len); + if ( bdat ) + bdat->Undelivered(seq, len, is_orig); + EndData(); }