Hello again:
The exports from my RC SQL address book look like this:
BEGIN:VCARD VERSION:3.0 FN:John Doe EMAIL;type=INTERNET:john.doe@example.com END:VCARD
Importing that kind of card fails silently.
Manually adding the N line and editing the email line to read like this (adding ";type=WORK")
N:Doe;John;;; EMAIL;type=INTERNET;type=WORK:john.doe@example.com
so that the final VCF looks like this:
BEGIN:VCARD VERSION:3.0 N:Doe;John;;; FN:John Doe EMAIL;type=INTERNET;type=WORK:john.doe@example.com END:VCARD
makes the import from a default RC sql export work. Two observations:
exist (using FN)? 2) My fieldmap has 'email:work' => 'mail', which explains the requirement for type=WORK. Is it possible to map several field (HOME, ...) to the same destination LDAP field?
Thanks, Achim