How to sync contacts and the calendar on Ubuntu Touch with OwnCloud
How do I synchronize contacts and calendars from OwnCloud with the Ubuntu phone?
The Ubuntu phone uses the evolution data server and the data can be synchronized using syncevolution
.
- Open an ssh-connection to your Ubuntu Phone (I'm using the Ubuntu-SDK for this purpose)
-
Then execute
syncevolution --configure --keyring=no --template webdav username=- password='OCPASSWORD' syncurl="YOURSERVER.COM/owncloud" target-config@owncloud
- everything that's written in capitals needs to be replaced with your custom owncloud parameters.
- if you are using a self-signed certificate you would download it from the server, save it locally and tell syncevolution where to find it
SSLServerCertificates="/home/phablet/YOURCERTIFICATE.crt"
. You can place this command just after the URL parameter. - if the above doesn't work, you could use this unsecure alternative
SSLVerifyServer="0"
-
Now tell syncevolution the information about the phone
syncevolution --configure --template SyncEvolution_Client sync=none syncURL=local://@owncloud username= password= owncloud
-
and the specific parameters for the calendar
syncevolution --configure --template webdav database=https://YOURSERVER.COM/owncloud/remote.php/caldav/calendars/OCUSER/personal backend=caldav target-config@owncloud calendar
The database path, can be found in the owncloud web frontend by clicking the chain symbol.
-
now
syncevolution --configure sync=two-way backend=calendar database=personal owncloud calendar
-
and finally start the synchronization
syncevolution --sync slow owncloud calendar
For synchronizing the contacts you would just need to add this steps:
-
syncevolution --configure --template webdav database=https://YOURSERVER.COM/owncloud/remote.php/carddav/addressbooks/OCUSER/contacts backend=carddav target-config@owncloud contacts
you can again get the right path from the web frontend
-
database is the name of the address book on your devicesyncevolution --configure sync=two-way backend=contacts database=personal owncloud contacts
-
now run
syncevolution --sync slow owncloud contacts