Summary | Improve multiple email addreses per Turba contact |
Queue | Horde Framework Packages |
Queue Version | HEAD |
Type | Enhancement |
State | Resolved |
Priority | 1. Low |
Owners | chuck (at) horde (dot) org |
Requester | thomas.jarosch (at) intra2net (dot) com |
Created | 2007-05-14 (5004 days ago) |
Due | |
Updated | 2008-03-03 (4710 days ago) |
Assigned | |
Resolved | 2007-05-25 (4993 days ago) |
Milestone | |
Patch | No |
enhancements? It's one thing to re-open a bug that's not fixed, but
this is a new bug introduced after the enhancement was closed...
enhancements? It's one thing to re-open a bug that's not fixed, but
this is a new bug introduced after the enhancement was closed...
New Attachment: turba-fix-multiple-addresses.patch
attached patch fixes the multiple email address support after
the layout of the params array changed in Turba's attributes.php.
Cheers,
Thomas
New Attachment: turba-multiple-email-addresses-v2.patch
Assigned to Chuck Hagenbuch
State ⇒ Resolved
New Attachment: framework-UI-renderer-email-update.patch
New Attachment: turba-fix-search-rfc822explode.patch
I just tried to enter "foo:a@b.example,c@d.example,e@f.example;" and
it complained it's not a valid address.
can still appear in existing address books.
if (!empty($GLOBALS['conf']['kolab']['enabled'])) {
$attributes['emails'] = array(
'label' => _("Emails"),
'type' => 'email',
'required' => false,
'params' => array(true, false, true)
);
}
Apart from that I've never seen a single use of the group format.
Though an MIME:rfc822explode() shouldn't hurt.
Thomas
I just tried to enter "foo:a@b.example,c@d.example,e@f.example;" and
it complained it's not a valid address.
can still appear in existing address books.
have to use MIME::rfc822Explode() to correctly support email groups.
I just tried to enter "foo:a@b.example,c@d.example,e@f.example;" and
it complained it's not a valid address.
Thomas
have to use MIME::rfc822Explode() to correctly support email groups.
what this line in the Turba patch is checking against?
if (is_array($attributes[$key]['params']) &&
$attributes[$key]['params'][0] == true)
http://wiki.horde.org/Doc/Dev/FormTypes says for the email field the
first entry is "allow multiple addresses".
Thanks for commiting the patch.
State ⇒ Feedback
what this line in the Turba patch is checking against?
if (is_array($attributes[$key]['params']) &&
$attributes[$key]['params'][0] == true)
Thanks.
New Attachment: turba-fix-search.patch
Type ⇒ Enhancement
State ⇒ New
Priority ⇒ 1. Low
Summary ⇒ Improve multiple email addreses per Turba contact
Queue ⇒ Horde Framework Packages
New Attachment: framework-UI-renderer-multiple-email.patch
this patch improves multiple contacts per email address as provided by
Turba HEAD.
Instead of generating one big (unusable) HTML link with all addresses,
each address gets its own link.
Cheers,
Thomas