From 90bae886c2d763c7e8ba6783e9c86d395c050566 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Sat, 28 Jan 2017 10:01:59 +0100 Subject: [PATCH] increased max attributes value to 200 --- src/internfile/mh_execm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internfile/mh_execm.cpp b/src/internfile/mh_execm.cpp index 47b7758a..2625d87e 100644 --- a/src/internfile/mh_execm.cpp +++ b/src/internfile/mh_execm.cpp @@ -266,9 +266,9 @@ bool MimeHandlerExecMultiple::next_document() LOGDEB("MHExecMultiple: got [" << nm << "] -> [" << data << "]\n"); m_metaData[nm] += data; } - if (loop == 20) { + if (loop == 200) { // ?? - LOGERR("MHExecMultiple: filter sent too many parameters\n"); + LOGERR("MHExecMultiple: handler sent more than 200 attributes\n"); return false; } }