From 8c19aa4cb63608e0493b22c93809ece6ba29a3f1 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Sun, 29 Mar 2009 18:34:09 -0600 Subject: [PATCH] Correctly add spacing between header and body --- imp/lib/Contents.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/lib/Contents.php b/imp/lib/Contents.php index 000fcf6c8..4ecb58171 100644 --- a/imp/lib/Contents.php +++ b/imp/lib/Contents.php @@ -224,7 +224,7 @@ class IMP_Contents Horde_Imap_Client::FETCH_HEADERTEXT => array(array('peek' => true)), Horde_Imap_Client::FETCH_BODYTEXT => array(array('peek' => true)) ), array('ids' => array($this->_index))); - return $res[$this->_index]['headertext'][0] . $res[$this->_index]['bodytext'][0]; + return $res[$this->_index]['headertext'][0] . "\r\n\r\n" . $res[$this->_index]['bodytext'][0]; } catch (Horde_Imap_Client_Exception $e) { return ''; } -- 2.11.0