From: Philipp Takacs Date: Sat, 14 Jul 2018 11:41:09 +0000 (+0200) Subject: spost accept body lines with 998 characters X-Git-Tag: mmh-0.4~27 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=d39fe43959fda0efb9ae681672ea8e476f1848e1 spost accept body lines with 998 characters --- diff --git a/uip/spost.c b/uip/spost.c index 39d8ada..fd0cbcc 100644 --- a/uip/spost.c +++ b/uip/spost.c @@ -245,7 +245,7 @@ main(int argc, char **argv) finish_headers(out); fprintf(out, "\n%s", f.value); while ((state = m_getfld2(state, &f, in)) == BODY2) { - if (f.valuelen >= NAMESZ) { + if (f.valuelen > NAMESZ+1 || (!f.crlf && f.valuelen > NAMESZ)) { adios(EX_DATAERR, NULL, "Body contains a to long line"); } fputs(f.value, out);