From: Michael M Slusarz Date: Thu, 8 Oct 2009 16:41:52 +0000 (-0600) Subject: Bug #8555: Linewrap q-p data X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7e3db187475cd661ab892c7a8e15b4b32983b562;p=horde.git Bug #8555: Linewrap q-p data --- diff --git a/framework/Mime/lib/Horde/Mime/Part.php b/framework/Mime/lib/Horde/Mime/Part.php index 596bab361..c9d467878 100644 --- a/framework/Mime/lib/Horde/Mime/Part.php +++ b/framework/Mime/lib/Horde/Mime/Part.php @@ -460,7 +460,7 @@ class Horde_Mime_Part case 'quoted-printable': /* Quoted-Printable Encoding: See RFC 2045, section 6.7 */ - return $this->_writeStream($fp, array('filter' => 'convert.quoted-printable-encode', 'params' => array('line-break-chars' => $this->getEOL()))); + return $this->_writeStream($fp, array('filter' => 'convert.quoted-printable-encode', 'params' => array('line-length' => 76, 'line-break-chars' => $this->getEOL()))); default: $this->_temp['transferEncodeClose'] = false;