<?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[Email, calendar and contact sync advice]]></title><description><![CDATA[<p dir="auto">Hi</p>
<p dir="auto">I hope you are all well.</p>
<p dir="auto">I am hoping to get some advice regarding email, calendar and contact synchronisation on my UT phone.<br />
I am currently using my gmail for the contact sync but I am planning on leaving google and set up an email address with a company has some morals.<br />
What I need is to be able to sync my contacts and access my emails and calendar on my UT phone.  In the contact sync the only option for an email provider seems to be for google.<br />
Can anyone provide any recommendations where I can get these all working on my UT phone with a different (preferably free) email provider?</p>
<p dir="auto">Thank you</p>
<p dir="auto">Kind regards<br />
Kaz</p>
]]></description><link>https://forums.ubports.com/topic/4620/email-calendar-and-contact-sync-advice</link><generator>RSS for Node</generator><lastBuildDate>Fri, 12 Jun 2026 10:37:54 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/4620.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 17 Jul 2020 11:48:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Thu, 13 Aug 2020 10:34:06 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/applee" aria-label="Profile: AppLee">@<bdi>AppLee</bdi></a></p>
<p dir="auto">Thanks - I have marked it as a question and as solved.</p>
<p dir="auto">Kind Regards<br />
Kaz</p>
]]></description><link>https://forums.ubports.com/post/38620</link><guid isPermaLink="true">https://forums.ubports.com/post/38620</guid><dc:creator><![CDATA[ko]]></dc:creator><pubDate>Thu, 13 Aug 2020 10:34:06 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Wed, 12 Aug 2020 19:07:30 GMT]]></title><description><![CDATA[<p dir="auto">Hi, <a class="plugin-mentions-user plugin-mentions-a" href="/user/ko" aria-label="Profile: ko">@<bdi>ko</bdi></a><br />
Glad you managed to make it work.</p>
<p dir="auto">And thanks for sharing the details about how you proceeded.<br />
Can you mark your topic as a question (using the "Topic Tools") and then mark it solved so it will be easier for other people to find it out ?</p>
<p dir="auto">If you can't, ping me and I'll do it for you.</p>
]]></description><link>https://forums.ubports.com/post/38591</link><guid isPermaLink="true">https://forums.ubports.com/post/38591</guid><dc:creator><![CDATA[AppLee]]></dc:creator><pubDate>Wed, 12 Aug 2020 19:07:30 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Wed, 12 Aug 2020 15:47:22 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/applee" aria-label="Profile: AppLee">@<bdi>AppLee</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/thatoo" aria-label="Profile: Thatoo">@<bdi>Thatoo</bdi></a>, others</p>
<p dir="auto">I hope you are all well and thank you again for your help and advice.</p>
<p dir="auto">Just an updated:</p>
<p dir="auto">This is what I did to get my phone close to what I need. <br />
The phone is taking updates from the stable channel.</p>
<p dir="auto">Please note - this works for now but I cannot guarantee how long it will work but at the most, the crontab may need to be set up again with the two tasks.<br />
I will need to monitor my contact and calendar exports in the Documents folder for the modified timestamps now and then.</p>
<p dir="auto">I set up nextcloud account and installed ubsync on my phone. Marked my Documents folder as a backup dir (among others) in ubsync</p>
<p dir="auto">I set up 4 scripts (.sh files) with execute permissions in Documents - this will also keep my scripts backed up - they will not have execute permissions if you need to pull them down from nextcloud:</p>
<p dir="auto">#calendar_export.sh#!/bin/bash<br />
export display=:0.0<br />
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)<br />
syncevolution --export /home/phablet/Documents/utcalendar.ical backend=evolution-calendar database=Personal</p>
<p dir="auto">#calendar_import.sh<br />
#!/bin/bash<br />
syncevolution --delete-items backend=evolution-calendar --luids '*' export display=:0.0 &amp;&amp; export dbus_session_bus_address=unix:abstract=/tmp/dbus-t5OB5i75dT &amp;&amp; syncevolution --import /home/phablet/Documents/utcalendar.ical backend=evolution-calendar database=Personal</p>
<p dir="auto">#contact_export.sh<br />
#!/bin/bash<br />
export display=:0.0<br />
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)<br />
syncevolution --export /home/phablet/Documents/utcontacts.vcf backend=evolution-contacts database=Personal</p>
<p dir="auto">#contact_import.sh<br />
#!/bin/bash<br />
syncevolution --delete-items backend=evolution-contacts --luids '*'<br />
export display=:0.0 &amp;&amp; export dbus_session_bus_address=unix:abstract=/tmp/dbus-t5OB5i75dT &amp;&amp; syncevolution --import /home/phablet/Documents/utcontacts.vcf backend=evolution-contacts database=Personal</p>
<p dir="auto">To do the initial import I exported my contacts and calendar from gmail and renamed the files as utcontacts.vcf and utcalendar.ical and placed them in the Documents directory.<br />
syncevolution needs a blank line after every END:VCARD and END:VCALENDAR in the contacts vcf and calendar ical files respectively.</p>
<p dir="auto">I connected my phone to my laptop and did the following:</p>
<p dir="auto">On the terminal:<br />
adb shell<br />
Note: After restarting the phone the drive will become read-only again from what I can tell (no promises) - I did not do these are root:<br />
sudo mount -o remount,rw /<br />
crontab -e</p>
<p dir="auto">add the following - you can change the frequency to suit your needs:</p>
<p dir="auto">30 2 * * * /home/phablet/Documents/contact_export.sh<br />
31 2 * * * /home/phablet/Documents/calendar_export.sh</p>
<p dir="auto">I am not sure how crontab works as every time you open it the filename is different but my scheduled tasks are present.</p>
<p dir="auto">I have set up a tutanota email account so the only thing that I will not have on my UT phone is email notifications.</p>
<p dir="auto">I think I have covered everything.</p>
<p dir="auto">If you spot any problems or issues please let me know - thank you and good luck.</p>
<p dir="auto">Kind Regards<br />
Kaz</p>
]]></description><link>https://forums.ubports.com/post/38589</link><guid isPermaLink="true">https://forums.ubports.com/post/38589</guid><dc:creator><![CDATA[ko]]></dc:creator><pubDate>Wed, 12 Aug 2020 15:47:22 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Wed, 22 Jul 2020 14:47:32 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/applee" aria-label="Profile: AppLee">@<bdi>AppLee</bdi></a></p>
<p dir="auto">Thank you - I will try and get this set up in the next few days.</p>
<p dir="auto">Kind Regards<br />
Kaz</p>
]]></description><link>https://forums.ubports.com/post/37139</link><guid isPermaLink="true">https://forums.ubports.com/post/37139</guid><dc:creator><![CDATA[ko]]></dc:creator><pubDate>Wed, 22 Jul 2020 14:47:32 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Sun, 19 Jul 2020 20:09:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ko" aria-label="Profile: ko">@<bdi>ko</bdi></a> I use UBsync for my files.<br />
But the Calendar app uses the account system of UT. It's all native.</p>
]]></description><link>https://forums.ubports.com/post/36963</link><guid isPermaLink="true">https://forums.ubports.com/post/36963</guid><dc:creator><![CDATA[AppLee]]></dc:creator><pubDate>Sun, 19 Jul 2020 20:09:01 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Sun, 19 Jul 2020 12:29:51 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/thatoo" aria-label="Profile: Thatoo">@<bdi>Thatoo</bdi></a></p>
<p dir="auto">I will try the solution suggested by AppLee but I am hoping to find a solution which does the sync in the background without me worring about it.</p>
<p dir="auto">I will post what I find here.</p>
<p dir="auto">Thanks<br />
Kaz</p>
]]></description><link>https://forums.ubports.com/post/36940</link><guid isPermaLink="true">https://forums.ubports.com/post/36940</guid><dc:creator><![CDATA[ko]]></dc:creator><pubDate>Sun, 19 Jul 2020 12:29:51 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Sun, 19 Jul 2020 12:27:10 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/applee" aria-label="Profile: AppLee">@<bdi>AppLee</bdi></a>,</p>
<p dir="auto">Thank you for your reply.</p>
<p dir="auto">I will try with the solution you are using.<br />
Are you using the ubsync app to sync your files?</p>
<p dir="auto">I may have to go back to my android phone temporarily as the UT phone (nexus 5) started entering some digits on the emergency dialler by iteself while it was locked and on charge.  I only realised due to the dialpad sounds - something strange going on there.  Should I report this as a bug?</p>
<p dir="auto">Thanks<br />
Kaz</p>
]]></description><link>https://forums.ubports.com/post/36939</link><guid isPermaLink="true">https://forums.ubports.com/post/36939</guid><dc:creator><![CDATA[ko]]></dc:creator><pubDate>Sun, 19 Jul 2020 12:27:10 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Fri, 17 Jul 2020 15:42:52 GMT]]></title><description><![CDATA[<p dir="auto">I forgot this one : <a href="https://forums.ubports.com/topic/4340/sync-nextcloud-contacts-with-ubuntu-touch/5?_=1595000507326">https://forums.ubports.com/topic/4340/sync-nextcloud-contacts-with-ubuntu-touch/5?_=1595000507326</a></p>
]]></description><link>https://forums.ubports.com/post/36851</link><guid isPermaLink="true">https://forums.ubports.com/post/36851</guid><dc:creator><![CDATA[Thatoo]]></dc:creator><pubDate>Fri, 17 Jul 2020 15:42:52 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Fri, 17 Jul 2020 15:22:26 GMT]]></title><description><![CDATA[<p dir="auto">Everything sync very well but contacts. I'm sure you will find your way to sync calendars and data with nextcloud.<br />
To sync your contacts, several attempt have been donc but none is working smoothly so far.<br />
Here are the page to look at to try syncing your contacts :<br />
<a href="https://github.com/UT-ilities/UTouch_CalDAV_and_CardDAV_synchronization" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/UT-ilities/UTouch_CalDAV_and_CardDAV_synchronization</a><br />
<a href="https://forums.ubports.com/topic/1026/carddav-contacts-support/45?_=1594234767902">https://forums.ubports.com/topic/1026/carddav-contacts-support/45?_=1594234767902</a><br />
<a href="http://docs.ubports.com/en/latest/userguide/advanceduse/dav.html" target="_blank" rel="noopener noreferrer nofollow ugc">http://docs.ubports.com/en/latest/userguide/advanceduse/dav.html</a></p>
<p dir="auto">if you manage to make it work, please share the way to success.</p>
]]></description><link>https://forums.ubports.com/post/36849</link><guid isPermaLink="true">https://forums.ubports.com/post/36849</guid><dc:creator><![CDATA[Thatoo]]></dc:creator><pubDate>Fri, 17 Jul 2020 15:22:26 GMT</pubDate></item><item><title><![CDATA[Reply to Email, calendar and contact sync advice on Fri, 17 Jul 2020 12:48:01 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/ko" aria-label="Profile: ko">@<bdi>ko</bdi></a> ,</p>
<p dir="auto">What I would do (and what I did) is to use Nextcloud to sync your data.<br />
The "Calendar" app is able to sync with Nextcloud and it works fine.</p>
<p dir="auto">For contacts, in my experience you don't change them so often, so I make a manual backup using VCF format and I back it up using my nextcloud account.<br />
To switch from google, you can simply export your contact list as VCF and import it to Nextcloud, it's fast and easy.</p>
<p dir="auto">For email services, I use protonmail and disroot.<br />
On UT I set my IMAP account in Dekko2 which works fine for me.</p>
]]></description><link>https://forums.ubports.com/post/36843</link><guid isPermaLink="true">https://forums.ubports.com/post/36843</guid><dc:creator><![CDATA[AppLee]]></dc:creator><pubDate>Fri, 17 Jul 2020 12:48:01 GMT</pubDate></item></channel></rss>