Allow application/pgp parts to be displayed (#1484753)

release-0.6
thomascube 16 years ago
parent 6e6e89324c
commit 6695db83ca

@ -8,6 +8,7 @@ CHANGELOG RoundCube Webmail
- Applied mime_decode patch by David Lublink
- Allowed max. attachment size now indicated in compose screen (#1485030)
- Also capture backspace key in list mode (#1484566)
- Allow application/pgp parts to be displayed (#1484753)
2008/09/04 (alec)
----------

@ -230,6 +230,11 @@ class rcube_message
$structure->type = 'content';
$this->parts[] = &$structure;
}
// the same for pgp signed messages
else if ($message_ctype_primary == 'application' && $message_ctype_secondary == 'pgp' && !$recursive) {
$structure->type = 'content';
$this->parts[] = &$structure;
}
// message contains alternative parts
else if ($message_ctype_primary == 'multipart' && ($message_ctype_secondary == 'alternative') && is_array($structure->parts)) {
// get html/plaintext parts

Loading…
Cancel
Save