From 7850d896a8a3b285aa2575a312a98337f177e620 Mon Sep 17 00:00:00 2001 From: Tom DeCanio Date: Tue, 28 Jan 2014 15:33:26 -0800 Subject: [PATCH] smtp-mime: add server reply codes returned from outlook server --- src/app-layer-smtp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app-layer-smtp.c b/src/app-layer-smtp.c index 0d5ef040e8..606f795d98 100644 --- a/src/app-layer-smtp.c +++ b/src/app-layer-smtp.c @@ -147,10 +147,12 @@ enum { SMTP_REPLY_214, SMTP_REPLY_220, SMTP_REPLY_221, + SMTP_REPLY_235, SMTP_REPLY_250, SMTP_REPLY_251, SMTP_REPLY_252, + SMTP_REPLY_334, SMTP_REPLY_354, SMTP_REPLY_421, @@ -177,10 +179,12 @@ SCEnumCharMap smtp_reply_map[ ] = { { "214", SMTP_REPLY_214 }, { "220", SMTP_REPLY_220 }, { "221", SMTP_REPLY_221 }, + { "235", SMTP_REPLY_235 }, { "250", SMTP_REPLY_250 }, { "251", SMTP_REPLY_251 }, { "252", SMTP_REPLY_252 }, + { "334", SMTP_REPLY_334 }, { "354", SMTP_REPLY_354 }, { "421", SMTP_REPLY_421 },