How do I synchronize contacts and calendars from OwnCloud with the Ubuntu phone?
Asked
Active
Viewed 6,098 times
1 Answers
10
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= owncloudand 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 calendarThe 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 calendarand 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 contactsyou can again get the right path from the web frontend
syncevolution --configure sync=two-way backend=contacts database=personal owncloud contactsdatabase is the name of the address book on your device
now run
syncevolution --sync slow owncloud contacts