<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[CalDav Feature]]></title><description><![CDATA[<p dir="auto">I'm so happy about the CalDAV implementation in OTA2.</p>
<p dir="auto">I use a meizu mx4 and have a owncloud installation in my local network. On my android device i use DavDroid an it works well.</p>
<p dir="auto"><img src="/assets/uploads/files/1507835404422-screenshot20171012_210048889-resized.png" alt="0_1507835402801_screenshot20171012_210048889.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">i entered my link information and it's possible to touch the sync button in the calendar app.</p>
<p dir="auto"><img src="/assets/uploads/files/1507836413429-screenshot20171012_210222762-resized.png" alt="0_1507836411967_screenshot20171012_210222762.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">but i see no entries in my calendar</p>
]]></description><link>https://forums.ubports.com/topic/659/caldav-feature</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Apr 2026 17:56:32 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/659.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 12 Oct 2017 19:28:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CalDav Feature on Tue, 17 Oct 2017 19:43:35 GMT]]></title><description><![CDATA[<p dir="auto">i love ubports and i love this community.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zlamalp" aria-label="Profile: zlamalp">@<bdi>zlamalp</bdi></a> thanks for your skript an informations. it works well for me.</p>
<p dir="auto"><img src="/assets/uploads/files/1508269386972-screenshot20171017_213917308-resized.png" alt="0_1508269384956_screenshot20171017_213917308.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forums.ubports.com/post/4932</link><guid isPermaLink="true">https://forums.ubports.com/post/4932</guid><dc:creator><![CDATA[stefwe]]></dc:creator><pubDate>Tue, 17 Oct 2017 19:43:35 GMT</pubDate></item><item><title><![CDATA[Reply to CalDav Feature on Tue, 17 Oct 2017 10:48:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/stefan" aria-label="Profile: Stefan">@<bdi>Stefan</bdi></a> Hi, as <a class="plugin-mentions-user plugin-mentions-a" href="/user/tewel" aria-label="Profile: Tewel">@<bdi>Tewel</bdi></a> wrote, you can use syncevolution script mentioned on the UBports wiki. I shortened it to sync only my contacts and not calendars, since it works with online accounts by default. Fixes from the wiki are already applied to this source and with this setting i got "Personal - OwnCloud" address book displayed in address-book-app settings (and I set it as default). I'm not sure, where it got that name, since in owncloud gui it's displayed as "Contacts" and I named it "OwnCloud" in a script, but hey, it works.<br />
I do not use multiple addressbooks, but judging by the script output on my phone it probably could work. Output listed other owncloud stuff like my calendars, memos etc., but as "inactive" and then synced only my contacts.</p>
<pre><code>#!/bin/bash
# This script is a draft combination of the script found at https://gist.github.com/tcarrondo
# It is more or less to remember what I have done to make it work for my Fairphone 2 with UBports ubuntu touch
# Combined by me: Sebastian Gallehr &lt;sebastian@gallehr.de&gt;
# Thanks to: Tiago Carrondo &lt;tcarrondo@ubuntu.com&gt;
# Thanks to: Romain Fluttaz &lt;romain@botux.fr&gt;
# Thanks to: Wayne Ward &lt;info@wayneward.co.uk&gt;
# Thanks to: Mitchell Reese &lt;mitchell@curiouslegends.com.au&gt;
# --------------- [ Server ] ---------------- #
USERNAME=""               # you know this one
PASSWORD=""               # lots of ******

# ----------------- [ Phone ] ----------------- #

CONTACTS_CONFIG_NAME="owncloudcontacts"            # I use "myCloud"
CONTACTS_NAME="owncloudcontacts"          # I use "personalcontacts"
CONTACTS_VISUAL_NAME="OwnCloud"      # you can choose a nice name to show on the contacts app like "OwnContacts"
CONTACTS_URL=""                    # CardDAV url to my contacts taken from OwnCloud web interface
CRON_FREQUENCY="hourly"        # I use "hourly"

export DBUS_SESSION_BUS_ADDRESS=$(ps -u phablet e | grep -Eo 'dbus-daemon.*address=unix:abstract=/tmp/dbus-[A-Za-z0-9]{10}' | tail -c35)

#Create contact list
syncevolution --create-database backend=evolution-contacts database=$CONTACTS_VISUAL_NAME
#Create Peer
syncevolution --configure --template webdav username=$USERNAME password=$PASSWORD syncURL=$CONTACTS_URL keyring=no target-config@$CONTACTS_CONFIG_NAME
#Create New Source
syncevolution --configure backend=evolution-contacts database=$CONTACTS_VISUAL_NAME @default $CONTACTS_NAME
#Add remote database
syncevolution --configure database=$CONTACTS_URL backend=carddav target-config@$CONTACTS_CONFIG_NAME $CONTACTS_NAME
#Connect remote contact list with local databases
syncevolution --configure --template SyncEvolution_Client Sync=None syncURL=local://@$CONTACTS_CONFIG_NAME $CONTACTS_CONFIG_NAME $CONTACTS_NAME
#Add local database to the source
syncevolution --configure sync=two-way backend=evolution-contacts database=$CONTACTS_VISUAL_NAME $CONTACTS_CONFIG_NAME $CONTACTS_NAME
#Start first sync
syncevolution --sync refresh-from-remote $CONTACTS_CONFIG_NAME $CONTACTS_NAME

#Add Sync Cronjob
sudo mount / -o remount,rw
COMMAND_LINE="export DISPLAY=:0.0 &amp;&amp; export DBUS_SESSION_BUS_ADDRESS=$(ps -u phablet e | grep -Eo 'dbus-daemon.*address=unix:abstract=/tmp/dbus-[A-Za-z0-9]{10}' | tail -c35) &amp;&amp; /usr/bin/syncevolution $CONTACTS_NAME"
sudo sh -c "echo '$COMMAND_LINE' &gt; /sbin/sogosync"
sudo chmod +x /sbin/sogosync

CRON_LINE="@$CRON_FREQUENCY /sbin/sogosync"
(crontab -u phablet -r;) # only if no other cronjob already exist in the crontab
(crontab -u phablet -l; echo "$CRON_LINE" ) | crontab -u phablet -
sudo mount / -o remount,ro
sudo service cron restart
</code></pre>
]]></description><link>https://forums.ubports.com/post/4916</link><guid isPermaLink="true">https://forums.ubports.com/post/4916</guid><dc:creator><![CDATA[zlamalp]]></dc:creator><pubDate>Tue, 17 Oct 2017 10:48:01 GMT</pubDate></item><item><title><![CDATA[Reply to CalDav Feature on Fri, 13 Oct 2017 12:41:36 GMT]]></title><description><![CDATA[<p dir="auto">An easy way would be nice. I only know: import contacts from sim-card and syncevolution...</p>
]]></description><link>https://forums.ubports.com/post/4845</link><guid isPermaLink="true">https://forums.ubports.com/post/4845</guid><dc:creator><![CDATA[Tewel]]></dc:creator><pubDate>Fri, 13 Oct 2017 12:41:36 GMT</pubDate></item><item><title><![CDATA[Reply to CalDav Feature on Fri, 13 Oct 2017 08:29:16 GMT]]></title><description><![CDATA[<p dir="auto">Gibt es dann auch eine einfache Funktion meine Kontakte von Owncloud zu übernehmen?</p>
<p dir="auto">eng:<br />
is there any option i can import easily my owncloud contacts(carddav) like i can do this with the calendar(caldav)?</p>
]]></description><link>https://forums.ubports.com/post/4844</link><guid isPermaLink="true">https://forums.ubports.com/post/4844</guid><dc:creator><![CDATA[stefwe]]></dc:creator><pubDate>Fri, 13 Oct 2017 08:29:16 GMT</pubDate></item><item><title><![CDATA[Reply to CalDav Feature on Thu, 12 Oct 2017 19:59:00 GMT]]></title><description><![CDATA[<p dir="auto">Danke. Funktioniert perfekt... keine Ahnung wieso ich das so umständlich machen wollte...</p>
]]></description><link>https://forums.ubports.com/post/4834</link><guid isPermaLink="true">https://forums.ubports.com/post/4834</guid><dc:creator><![CDATA[stefwe]]></dc:creator><pubDate>Thu, 12 Oct 2017 19:59:00 GMT</pubDate></item><item><title><![CDATA[Reply to CalDav Feature on Thu, 12 Oct 2017 19:48:05 GMT]]></title><description><![CDATA[<p dir="auto">gibt es bei dir nicht auch direkt die owncloud als auswahlmöglichkeit unter generic, ich hab ein nexus 5, da gibtes direkt die ownloud, funktioniert wunderbar, sonst benutze ich auch syncevolution um kalender und kontakte mit der owncloud zu syncen</p>
]]></description><link>https://forums.ubports.com/post/4833</link><guid isPermaLink="true">https://forums.ubports.com/post/4833</guid><dc:creator><![CDATA[Tewel]]></dc:creator><pubDate>Thu, 12 Oct 2017 19:48:05 GMT</pubDate></item></channel></rss>