| Summary | Fix MIME::rfc822Explode |
| Queue | Horde Framework Packages |
| Queue Version | HEAD |
| Type | Bug |
| State | Resolved |
| Priority | 2. Medium |
| Owners | Chuck Hagenbuch <chuck (at) horde (dot) org> |
| Requester | Thomas Jarosch <thomas (dot) jarosch (at) intra2net (dot) com> |
| Created | 06/11/08 (645 days ago) |
| Due | |
| Updated | 06/11/08 (645 days ago) |
| Assigned | 06/11/08 (645 days ago) |
| Resolved | 06/11/08 (645 days ago) |
| Attachments | framework-MIME-fix-rfc822Explode.patch ![]() |
| Milestone | |
| Patch | No |
framework/MIME/tests and then executing:
pear rt
(or pear run-tests)
btw: I think it's not worth mentioning in the "CHANGES" file as the bug
was introduced only recently when Michael cleaned up the function,
the new code was luckily not part of the Horde 3.2 release.
State ⇒ Resolved
http://cvs.horde.org/co.php?r=1.1&f=framework%2FMIME%2Ftests%2Fbug_6896.phpt
for a simple example test.
http://cvs.horde.org/diff.php/framework/MIME/MIME.php?r1=1.190&r2=1.191&ty=u
http://cvs.horde.org/diff.php/horde/docs/CHANGES?r1=1.1103&r2=1.1104&ty=u
http://cvs.horde.org/co.php/framework/MIME/tests/bug_6896.phpt?r=1.1
Taken from Thomas Jarosch
stopped working:
print_r(MIME::rfc822Explode("addr1@email.com, addr2@email.com"));
The resulting array should contain two entries instead of one.
Taken from
Assigned to Thomas Jarosch
Assigned to
State ⇒ Assigned
Assigned to Michael Slusarz
State ⇒ Unconfirmed
New Attachment: framework-MIME-fix-rfc822Explode.patch
Patch ⇒
Milestone ⇒
Queue ⇒ Horde Framework Packages
Summary ⇒ Fix MIME::rfc822Explode
Type ⇒ Bug
Priority ⇒ 1. Low
while debugging why multiple email addresses in Turba stopped working
if found out MIME::rfc822Explode() is currently broken.
Attached patch fixes the issue.
Thomas