diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-05 10:55:52 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-05 10:55:52 +0000 |
| commit | 5da7270531da6b74eb617c31f90619454f59ed39 (patch) | |
| tree | b228dc4bb848222a7b9efe2ef9bfd134f41b28bc /roundcubemail/program/include | |
| parent | 41c7c4e16c92c98c8b95796146e229574db4c53c (diff) | |
Allow application/pgp parts to be displayed (#1484753)
git-svn-id: https://svn.roundcube.net/trunk@1743 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_message.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roundcubemail/program/include/rcube_message.php b/roundcubemail/program/include/rcube_message.php index 329c39049..c18db4bdd 100644 --- a/roundcubemail/program/include/rcube_message.php +++ b/roundcubemail/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 |
