View Single Post
Posts: 162 | Thanked: 351 times | Joined on Apr 2006 @ Cotswolds, UK
#109
The GPE Contacts menu item is called "Import VCard" but, in fact, it will import all the vcards in a file. So, if you can get all your contacts exported to a single file, GPE Contacts can import them. You can also use "gpe-contacts -i" to import a file.

You can use the N900 Contacts app to export all contacts (I recommend doing it in vCard 3.0 format): unfortunately it will create one file per contact. If you let it put them in the default location (the "Exported contacts" directory in your MyDocs directory), the following command entered at the Xterm prompt will import the ones which are valid:

Code:
for f in MyDocs/Exported\ contacts/* ; do gpe-contacts -i "$f" ; done
However, be aware that the Maemo Contacts app tends to create invalid vCards (missing the N: attribute).

I suggest that for any files which give an error, but you care about, you edit the file to add the line:

Code:
N:lastname;firstname;;;
and then re-import that file. Note that the semi-colons are important.

Graham
 

The Following User Says Thank You to Graham Cobb For This Useful Post: