From 66a3b034193ceef1315ab68ceaf6789ccbf882eb Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Mon, 12 Sep 2011 04:49:47 -0400
Subject: [PATCH] - Fix handling of binary attachments encoded with quoted-printable (#1488065)

---
 program/include/rcube_imap.php |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php
index dfbee76..ce8bb0f 100644
--- a/program/include/rcube_imap.php
+++ b/program/include/rcube_imap.php
@@ -2386,6 +2386,9 @@
             return true;
         }
 
+        // Remove NULL characters (#1486189)                                                                                      
+        $body = str_replace("\x00", '', $body);
+
         // convert charset (if text or message part)
         if ($body && !$skip_charset_conv &&
             preg_match('/^(text|message)$/', $o_part->ctype_primary)

--
Gitblit v1.9.1