VCard import

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(just documented how i imported my contacts)
 
Line 11: Line 11:
 
  iconv -f latin1 -t utf-8 vCards.vcf | sed 's/CHARSET=LATIN1://g' > all.vcf
 
  iconv -f latin1 -t utf-8 vCards.vcf | sed 's/CHARSET=LATIN1://g' > all.vcf
 
</code>
 
</code>
 +
[[category:Documentation]]
 +
[[category:software]]

Revision as of 05:06, 8 July 2008

If you have all your Contacts in one file you can import them with the following script: [1]

The important parts are taken from Wurps Import_Sim_Contacts script.

Export vCards from Mac OS X Addressbook

  1. set the vCard Format to 2.1 in the config dialog
  2. select all contacts and say "export vcard"
  3. despite having selected the charset to be utf-8 you may need to do:

iconv -f latin1 -t utf-8 vCards.vcf | sed 's/CHARSET=LATIN1://g' > all.vcf

Personal tools

If you have all your Contacts in one file you can import them with the following script: [1]

The important parts are taken from Wurps Import_Sim_Contacts script.

Export vCards from Mac OS X Addressbook

  1. set the vCard Format to 2.1 in the config dialog
  2. select all contacts and say "export vcard"
  3. despite having selected the charset to be utf-8 you may need to do:

iconv -f latin1 -t utf-8 vCards.vcf | sed 's/CHARSET=LATIN1://g' > all.vcf