SMTP: Add missing Undelivered() call

Not that it's implement, but for consistency.
This commit is contained in:
Arne Welzel 2025-07-12 17:13:32 +02:00
parent 6f05fbf2ce
commit a42875d033

View file

@ -90,6 +90,9 @@ void SMTP_Analyzer::Undelivered(uint64_t seq, int len, bool is_orig) {
if ( mail ) if ( mail )
mail->Undelivered(len); mail->Undelivered(len);
if ( bdat )
bdat->Undelivered(seq, len, is_orig);
EndData(); EndData();
} }