From: Michael M Slusarz Date: Mon, 30 Mar 2009 00:34:09 +0000 (-0600) Subject: Correctly add spacing between header and body X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8c19aa4cb63608e0493b22c93809ece6ba29a3f1;p=horde.git Correctly add spacing between header and body --- 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 ''; }