Ok, i got a working synchronisation between mobile and evolution using opensync and the lib-evo2 module.
issueing
msynctool --sync w880i --filter-objtype note --filter-objtype event --filter-objtype todo --conflict n
directly works fine, in a script like this:
#!/bin/bash
eval `dbus-launch --sh-syntax`
export DBUS_SESSION_BUS_ADDRESS
export DBUS_SESSION_BUS_PID
msynctool --sync w880i --filter-objtype note --filter-objtype event --filter-objtype todo --conflict n
exit 0
it does aswell.
But putting it in a crontab, this error pops up:
(process:18902): libebook-WARNING **: e_book_construct: Could not obtain a handle to the Personal Addressbook Server with IID `OAFIID:GNOME_Evolution_Exchange_Connector_BookFactory:1.2'
how do i solve this?
[edit]my crontab entry looks something like this:
@daily /usr/local/bin/w880i-sync.sh
with being the script mentioned earlier. [/edit]