On Tue, Mar 09, 2010 at 09:12:39AM +0800, Chen, Congwu wrote: > Please let me know if that works. I updated the sync-phone guide to > remind this and in a later update we might add a N900 template.
Thanks for your feedback! I'm now attaching a script which takes care of setting up my initial syncevolution configuration. After having run it, I can synchronize using "syncevolution n900". It works for the calendar, but it does not work for the contacts, I guess there is still some naming issue to be fleshed out somewhere, any idea? I'm not sure if the "super" stuff mentioned at http://syncevolution.org/development/sync-phone applies to the N900; I've tried to played a bit with it, but without any noticeable difference. Unfortunately, with the calendar sync, I get quite a lot of duplicates events in evolution, is that expected? Cheers. -- Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7 z...@{upsilon.cc,pps.jussieu.fr,debian.org} -<>- http://upsilon.cc/zack/ Dietro un grande uomo c'è ..| . |. Et ne m'en veux pas si je te tutoie sempre uno zaino ...........| ..: |.... Je dis tu à tous ceux que j'aime
#!/bin/sh # see http://syncevolution.org/development/sync-phone macaddress="...." name="n900" # addressbook="addressbook" # calendar="calendar" addressbook="Contacts" calendar="Calendar" todo="todo" memo="memo" syncevolution --configure \ --sync-property syncURL=obex-bt://$macaddress \ --sync-property enableWBXML=1 \ --sync-property PeerIsClient=1 \ --sync-property username= \ --sync-property password= \ --template scheduleworld \ $name syncevolution --configure \ --source-property type=addressbook:text/x-vcard \ $name $addressbook syncevolution --configure \ --source-property type=calendar:text/x-vcalendar \ $name $calendar syncevolution --configure \ --source-property type=calendar:text/x-vcalendar \ $name $todo for i in $calendar $addresbook $todo $memo; do uri=$i syncevolution --configure \ --source-property uri=$i \ $name $i; done
_______________________________________________ SyncEvolution mailing list [email protected] http://lists.syncevolution.org/listinfo/syncevolution
