- Fix handling of messages with Content-Type: application/* and no filename (#1484050)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | =========================== |
| | | |
| | | - Fix handling of messages with Content-Type: application/* and no filename (#1484050) |
| | | - Improved compose screen: resizable body and attachments list, vertical splitter, options menu |
| | | - Fix RC forgets search results (#1483883) |
| | | - TinyMCE 3.3.7 |
| | |
| | | else if ($structure->filename) { |
| | | $this->attachments[] = $structure; |
| | | } |
| | | // message is a single part non-text (without filename) |
| | | else if (preg_match('/application\//i', $mimetype)) { |
| | | $structure->filename = 'Part '.$structure->mime_id; |
| | | $this->attachments[] = $structure; |
| | | } |
| | | } |
| | | |
| | | |