From 50412eaeae8a33e79a0bfce7356f2d08fd4d29c7 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 23 Apr 2014 11:58:34 +0100 Subject: [PATCH] Support legacy 'RSPAMC' protocol line. --- contrib/http-parser/http_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/http-parser/http_parser.c b/contrib/http-parser/http_parser.c index 9aef5c1857..129df138d5 100644 --- a/contrib/http-parser/http_parser.c +++ b/contrib/http-parser/http_parser.c @@ -1218,6 +1218,7 @@ size_t http_parser_execute (http_parser *parser, case s_req_spamc_start: switch (ch) { case 'S': + case 'R': parser->state = s_req_spamc; break; case ' ': -- 2.47.3