Displaying 1 result from an estimated 1 matches for "message_part_flag_message_rfc822".
2014 May 12
0
message-decoder bug for attachments with charset=binary attribute in content-type?
...iginal code:
============================================================
241: ctx->binary_input = ctx->content_charset == NULL &&
242: (ctx->flags & MESSAGE_DECODER_FLAG_RETURN_BINARY) != 0 &&
243: (part->flags & (MESSAGE_PART_FLAG_TEXT |
244: MESSAGE_PART_FLAG_MESSAGE_RFC822)) == 0;
============================================================
My update:
============================================================
241 ctx->binary_input = ((ctx->content_charset != NULL) && (strcasecmp(ctx->content_charset, "binary") == 0)) || (ctx->conten...