From: Tom DeCanio Date: Tue, 28 Jan 2014 23:33:26 +0000 (-0800) Subject: smtp-mime: add server reply codes returned from outlook server X-Git-Tag: suricata-2.1beta2~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7850d896a8a3b285aa2575a312a98337f177e620;p=thirdparty%2Fsuricata.git smtp-mime: add server reply codes returned from outlook server --- 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 },