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 | 05/14/2007 (6624 days ago) |
Due | |
Updated | 03/03/2008 (6330 days ago) |
Assigned | |
Resolved | 05/25/2007 (6613 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
Priority ⇒ 1. Low
State ⇒ New
New Attachment: framework-UI-renderer-multiple-email.patch
Queue ⇒ Horde Framework Packages
Summary ⇒ Improve multiple email addreses per Turba contact
Type ⇒ Enhancement
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