Displaying 4 results from an estimated 4 matches for "message_part_flag_text".
2014 May 12
0
message-decoder bug for attachments with charset=binary attribute in content-type?
...dftotext can convert attached PDF.
Original 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_charse...
2021 Jun 21
2
Dovecot v2.3.14.1 released
...ands
before STARTTLS negotiation that would be executed after STARTTLS
finished with the client.
- lib-index: Corrupted mime.parts in dovecot.index.cache may have
resulted in Panic: file imap-bodystructure.c: line 206 (part_write_body):
assertion failed: (text == ((part->flags & MESSAGE_PART_FLAG_TEXT) != 0))
- imap: SETMETADATA could not be used to unset metadata values.
Instead NIL was handled as a "NIL" string. v2.3.14 regression.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot-news/attachments/20210621/3...
2021 Jun 21
2
Dovecot v2.3.14.1 released
...ands
before STARTTLS negotiation that would be executed after STARTTLS
finished with the client.
- lib-index: Corrupted mime.parts in dovecot.index.cache may have
resulted in Panic: file imap-bodystructure.c: line 206 (part_write_body):
assertion failed: (text == ((part->flags & MESSAGE_PART_FLAG_TEXT) != 0))
- imap: SETMETADATA could not be used to unset metadata values.
Instead NIL was handled as a "NIL" string. v2.3.14 regression.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot-news/attachments/20210621/3...
2005 Dec 22
1
alpha5: (message_body_search_ctx) assert
...}
(gdb) print part
$3 = (const struct message_part *) 0xf0788
(gdb) print *part
$4 = {parent = 0x0, next = 0x0, children = 0x0, physical_pos = 0, header_size = {physical_size = 168,
virtual_size = 168, lines = 0}, body_size = {physical_size = 20014, virtual_size = 20662, lines = 647},
flags = MESSAGE_PART_FLAG_TEXT, context = 0x0}
(gdb) print part_ctx
$5 = {body_ctx = 0xffbff3dc, translation = 0x0, decode_buf = 0x0, match_buf = 0x0, content_type = 0x0,
content_charset = 0x0, content_qp = 0, content_base64 = 0, content_unknown = 0, content_type_text = 1,
ignore_header = 1}
(gdb) print input->v_offset
$6...