diff options
author | thomascube <thomas@roundcube.net> | 2008-09-05 10:55:52 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-05 10:55:52 +0000 |
commit | 6695db83ca9bafb4dbecff6fedc2b5cd775024f3 (patch) | |
tree | dcc345cbecb88a4cbcfbcf4e7b20c897d43ebcf8 /program | |
parent | 6e6e89324c231737936acc3a30558df7e9649551 (diff) |
Allow application/pgp parts to be displayed (#1484753)
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_message.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/include/rcube_message.php b/program/include/rcube_message.php index 329c39049..c18db4bdd 100644 --- a/program/include/rcube_message.php +++ b/program/include/rcube_message.php @@ -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 |