<?xml version="1.0" encoding="UTF-8"?> 
<?xml-stylesheet href="https://dev.horde.org/themes/horde//default/feed-rss.xsl" type="text/xsl"?> 
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 
 <channel> 
  <title>Improve multiple email addreses per Turba contact</title> 
  <pubDate>Fri, 10 Apr 2026 13:16:53 +0000</pubDate> 
  <link>https://bugs.horde.org/ticket/5356</link> 
  <atom:link rel="self" type="application/rss+xml" title="Improve multiple email addreses per Turba contact" href="https://bugs.horde.org/ticket/5356/rss" /> 
  <description>Improve multiple email addreses per Turba contact</description> 
 
   
   
  <item> 
   <title>Hello together,



this patch improves multiple contacts per</title> 
   <description>Hello together,



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

</description> 
   <pubDate>Mon, 14 May 2007 17:05:23 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33060</link> 
  </item> 
   
  <item> 
   <title>Patch for Turba so you can use multiple email addresses in I</title> 
   <description>Patch for Turba so you can use multiple email addresses in IMP/kronolith.</description> 
   <pubDate>Wed, 16 May 2007 16:10:44 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33125</link> 
  </item> 
   
  <item> 
   <title>I&#039;ve committed the framework/UI change; can you please elabo</title> 
   <description>I&#039;ve committed the framework/UI change; can you please elaborate on what this line in the Turba patch is checking against?



if (is_array($attributes[$key][&#039;params&#039;]) &amp;&amp; $attributes[$key][&#039;params&#039;][0] == true) 



Thanks.</description> 
   <pubDate>Thu, 17 May 2007 20:50:35 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33147</link> 
  </item> 
   
  <item> 
   <title>&gt; I&#039;ve committed the framework/UI change; can you please ela</title> 
   <description>&gt; I&#039;ve committed the framework/UI change; can you please elaborate on 

&gt; what this line in the Turba patch is checking against?

&gt;

&gt; if (is_array($attributes[$key][&#039;params&#039;]) &amp;&amp; 

&gt; $attributes[$key][&#039;params&#039;][0] == true)



Attributes in Turba can take a &quot;params&quot; array.

http://wiki.horde.org/Doc/Dev/FormTypes says for the email field the first entry is &quot;allow multiple addresses&quot;.



Thanks for commiting the patch.

</description> 
   <pubDate>Thu, 17 May 2007 21:35:59 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33159</link> 
  </item> 
   
  <item> 
   <title>The explode(&#039;,&#039;, ...) call looks too simplified to me. We pr</title> 
   <description>The explode(&#039;,&#039;, ...) call looks too simplified to me. We probably have to use MIME::rfc822Explode() to correctly support email groups.</description> 
   <pubDate>Thu, 17 May 2007 22:03:32 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33162</link> 
  </item> 
   
  <item> 
   <title>Hello Jan,



&gt; The explode(&#039;,&#039;, ...) call looks too simplif</title> 
   <description>Hello Jan,



&gt; The explode(&#039;,&#039;, ...) call looks too simplified to me. We probably 

&gt; have to use MIME::rfc822Explode() to correctly support email groups.



Does Turba allow email groups?

I just tried to enter &quot;foo:a@b.example,c@d.example,e@f.example;&quot; and it complained it&#039;s not a valid address.



Thomas

</description> 
   <pubDate>Fri, 18 May 2007 07:45:53 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33175</link> 
  </item> 
   
  <item> 
   <title>&gt; Does Turba allow email groups?

&gt; I just tried to enter &quot;f</title> 
   <description>&gt; Does Turba allow email groups?

&gt; I just tried to enter &quot;foo:a@b.example,c@d.example,e@f.example;&quot; and 

&gt; it complained it&#039;s not a valid address.



Correct, but it doesn&#039;t allow multiple email addresses either, they can still appear in existing address books.</description> 
   <pubDate>Fri, 18 May 2007 08:15:09 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33178</link> 
  </item> 
   
  <item> 
   <title>&gt;&gt; Does Turba allow email groups?

&gt;&gt; I just tried to enter </title> 
   <description>&gt;&gt; Does Turba allow email groups?

&gt;&gt; I just tried to enter &quot;foo:a@b.example,c@d.example,e@f.example;&quot; and

&gt;&gt; it complained it&#039;s not a valid address.

&gt;

&gt; Correct, but it doesn&#039;t allow multiple email addresses either, they 

&gt; can still appear in existing address books.



It does allow multiple addresses if you do it like this in attributes.php:



if (!empty($GLOBALS[&#039;conf&#039;][&#039;kolab&#039;][&#039;enabled&#039;])) {

    $attributes[&#039;emails&#039;] = array(

        &#039;label&#039; =&gt; _(&quot;Emails&quot;),

        &#039;type&#039; =&gt; &#039;email&#039;,

        &#039;required&#039; =&gt; false,

        &#039;params&#039; =&gt; array(true, false, true)

    );

}



Apart from that I&#039;ve never seen a single use of the group format. Though an MIME:rfc822explode() shouldn&#039;t hurt.



Thomas

</description> 
   <pubDate>Fri, 18 May 2007 08:39:27 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33182</link> 
  </item> 
   
  <item> 
   <title>Updated Turba patch with MIME::rfc822Explode</title> 
   <description>Updated Turba patch with MIME::rfc822Explode</description> 
   <pubDate>Tue, 22 May 2007 19:13:21 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33387</link> 
  </item> 
   
  <item> 
   <title>Updated HTML renderer to also use MIME::rfc822Explode

</title> 
   <description>Updated HTML renderer to also use MIME::rfc822Explode

</description> 
   <pubDate>Tue, 22 May 2007 19:13:58 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33388</link> 
  </item> 
   
  <item> 
   <title>Committed, thanks!</title> 
   <description>Committed, thanks!</description> 
   <pubDate>Fri, 25 May 2007 00:02:58 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33436</link> 
  </item> 
   
  <item> 
   <title>New version of the patch including a &quot;isset($attributes[$key</title> 
   <description>New version of the patch including a &quot;isset($attributes[$key][&#039;params&#039;])&quot;.

</description> 
   <pubDate>Wed, 30 May 2007 16:34:46 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33663</link> 
  </item> 
   
  <item> 
   <title>That one works - committed, thanks.</title> 
   <description>That one works - committed, thanks.</description> 
   <pubDate>Wed, 30 May 2007 18:44:42 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t33672</link> 
  </item> 
   
  <item> 
   <title>Hello together,



attached patch fixes the multiple email a</title> 
   <description>Hello together,



attached patch fixes the multiple email address support after

the layout of the params array changed in Turba&#039;s attributes.php.



Cheers,

Thomas

</description> 
   <pubDate>Sun, 02 Mar 2008 11:24:07 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t43306</link> 
  </item> 
   
  <item> 
   <title>In the future, can you please create new bugs for issues wit</title> 
   <description>In the future, can you please create new bugs for issues with closed enhancements? It&#039;s one thing to re-open a bug that&#039;s not fixed, but this is a new bug introduced after the enhancement was closed...</description> 
   <pubDate>Sun, 02 Mar 2008 17:41:56 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t43319</link> 
  </item> 
   
  <item> 
   <title>committed</title> 
   <description>committed</description> 
   <pubDate>Sun, 02 Mar 2008 21:38:03 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t43322</link> 
  </item> 
   
  <item> 
   <title>&gt; In the future, can you please create new bugs for issues w</title> 
   <description>&gt; In the future, can you please create new bugs for issues with closed 

&gt; enhancements? It&#039;s one thing to re-open a bug that&#039;s not fixed, but 

&gt; this is a new bug introduced after the enhancement was closed...



Sure thing :-)

</description> 
   <pubDate>Mon, 03 Mar 2008 09:26:45 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/5356#t43331</link> 
  </item> 
   
   
 
 </channel> 
</rss> 
