Summary | Fix MIME::rfc822Explode |
Queue | Horde Framework Packages |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | chuck (at) horde (dot) org |
Requester | thomas.jarosch (at) intra2net (dot) com |
Created | 06/11/2008 (6234 days ago) |
Due | |
Updated | 06/11/2008 (6234 days ago) |
Assigned | 06/11/2008 (6234 days ago) |
Resolved | 06/11/2008 (6234 days ago) |
Github Issue Link | |
Github Pull Request | |
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
Taken from Michael Slusarz
Assigned to
State ⇒ Assigned
Assigned to Michael Slusarz
Priority ⇒ 1. Low
State ⇒ Unconfirmed
New Attachment: framework-MIME-fix-rfc822Explode.patch
Patch ⇒ No
Milestone ⇒
Queue ⇒ Horde Framework Packages
Summary ⇒ Fix MIME::rfc822Explode
Type ⇒ Bug
while debugging why multiple email addresses in Turba stopped working
if found out MIME::rfc822Explode() is currently broken.
Attached patch fixes the issue.
Thomas