From b02af515656223215f51c8413157d14656d89008 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 16 Dec 2010 23:10:06 -0500 Subject: [PATCH] Content-transfer-encoding: ISO-8859-1 joins the 'no encoding' list --- libcitadel/lib/mime_parser.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcitadel/lib/mime_parser.c b/libcitadel/lib/mime_parser.c index b4c61a596..86905f1ee 100644 --- a/libcitadel/lib/mime_parser.c +++ b/libcitadel/lib/mime_parser.c @@ -210,6 +210,8 @@ void mime_decode(char *partnum, strcpy(encoding, ""); if (!strcasecmp(encoding, "binary")) strcpy(encoding, ""); + if (!strcasecmp(encoding, "ISO-8859-1")) + strcpy(encoding, ""); /* If this part is not encoded, send as-is */ if ( (strlen(encoding) == 0) || (dont_decode)) { -- 2.39.2