From dd53a3d48627145c11ed54ba998898f62656a04d Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 13 Feb 2017 11:28:16 +0100 Subject: [PATCH] Enigma: Fix handling of messages with nested PGP encrypted parts (#5634) --- CHANGELOG | 1 + plugins/enigma/lib/enigma_engine.php | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 094e0cac0..2e2f01491 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,7 @@ CHANGELOG Roundcube Webmail =========================== - Enigma: Always use detached signatures (#5624) +- Enigma: Fix handling of messages with nested PGP encrypted parts (#5634) - Fix autocomplete popup closing with click outside the input, don't handle Tab key as Enter (#5606) - Fix jsdeps.json synchronization on update, warn about missing requirements of install-jsdeps.sh (#5598) - Fix missing thread expand icon on search result in widescreen mode (#5613) diff --git a/plugins/enigma/lib/enigma_engine.php b/plugins/enigma/lib/enigma_engine.php index 8e7d3e687..49ec7bd1a 100644 --- a/plugins/enigma/lib/enigma_engine.php +++ b/plugins/enigma/lib/enigma_engine.php @@ -426,11 +426,6 @@ class enigma_engine { $part = $p['structure']; - // exit, if we're already inside a decrypted message - if (in_array($part->mime_id, $this->encrypted_parts)) { - return; - } - // Get message body from IMAP server if ($body === null) { $body = $this->get_part_body($p['object'], $part);