One of my customers did an Outlook export / Roundcube import of his contacts, and none of the contacts were displaying their email address in the address book's vcard section.

In the database, all of his contacts had been saved with, "EMAIL;TYPE=INTERNET;TYPE=MAIN:[email protected]". My contacts for example are, "EMAIL;TYPE=INTERNET;TYPE=OTHER:[email protected]". Changing TYPE=OTHER to TYPE=MAIN in one of my contacts caused that one to also not display correctly.

I traced this back to program/steps/addressbook/func.inc:

29c29
< 'email' => array('type' => 'text', 'size' => 40, 'maxlength' => 254, 'label' => rcube_label('email'), 'subtypes' => array('home','work','other'), 'category' => 'main'),
---
'email' => array('type' => 'text', 'size' => 40, 'maxlength' => 254, 'label' => rcube_label('email'), 'subtypes' => array('home','work','other','main'), 'category' => 'main'),

...but I'm not sure if this is generally desired behavior or not, so I'm posting here for discussion instead of trac.

Thanks,

- R.

--
[__ Robert Sheldon
[__ No Problem
[__ Information technology support and services
[__ (530) 575-0278
_______________________________________________
Roundcube Development discussion mailing list
[email protected]
http://lists.roundcube.net/mailman/listinfo/dev

Reply via email to