- Fix handling of attachments inside message/rfc822 parts (#1488026)
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix handling of attachments inside message/rfc822 parts (#1488026) |
| | | - Make list of mimetypes that open in preview window configurable (#1487625) |
| | | - Added plugin hook 'message_part_get' for attachment downloads |
| | | - Localize forwarded message header (#1488058) |
| | |
| | | |
| | | $this->attachments[] = $mail_part; |
| | | } |
| | | } |
| | | // attachment part as message/rfc822 (#1488026) |
| | | else if ($mail_part->mimetype == 'message/rfc822') { |
| | | $this->parse_structure($mail_part); |
| | | } |
| | | } |
| | | |