From: Jan <jan...@im...> - 2006-06-20 18:58:16
|
Am Dienstag, 20. Juni 2006 19:05 schrieb Torsten Vollmann: > Ideas, anyone? I tried everything I could bring up, but nothing works. > > It's not cool to have a shiny new PDA but no entries in the adressbook :-( > > > _______________________________________________ > Opensync-users mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensync-users Hi Torsten, the problem is related to the syncml plugin. The problem is that it is statically configured to accept contacts, events, todos and notes. Referring to the logs that you provided only a contact session is created but opensync forwards the file as note, which is then rejected by the syncml plugin. Currently for me I patched the syncml plugin. Just comment out the following lines at the end of syncml_plugin.c, recompile and install: /* osync_plugin_accept_objtype(info, "note"); osync_plugin_accept_objformat(info, "note", "plain", "clean"); osync_plugin_set_batch_commit_objformat(info, "note", "plain", batch_commit); */ Be aware that this code block is contained two times and you should disable both. Best regards, Jan |