| Summary | QP encode bug produces too long line |
| Queue | Horde Framework Packages |
| Queue Version | FRAMEWORK_3 |
| Type | Bug |
| State | Resolved |
| Priority | 2. Medium |
| Owners | slusarz (at) horde (dot) org |
| Requester | maciej.uhlig (at) us (dot) edu (dot) pl |
| Created | 10/11/2009 (5872 days ago) |
| Due | |
| Updated | 10/11/2009 (5872 days ago) |
| Assigned | 10/11/2009 (5872 days ago) |
| Resolved | 10/11/2009 (5872 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
Bug: 8635Submitted by: maciej.uhlig@us.edu.pl
Make sure we limit QP to max 76 characters in line.
http://cvs.horde.org/diff.php/framework/MIME/Attic/MIME.php?rt=horde&r1=1.139.4.47&r2=1.139.4.48&ty=u
Queue ⇒ Horde Framework Packages
Assigned to Michael Slusarz
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ QP encode bug produces too long line
Queue ⇒ Horde Groupware Webmail Edition
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
produces too long output (encoded) line. The symptom is SpamAssassin
message regarding MIME_QP_LONG_LINE test in a mail message which
shouldn't happen.
It is suggested to change: "if ($curr_length > 76) {" to "if
($curr_length > 75) {" although YMMV.