Difference between revisions of "Contacts"

From Maemo Leste Wiki
Jump to navigationJump to search
Line 10: Line 10:




= Addressbook =
= Contacts =


Data is stored EDS, file is /home/user/.local/share/evolution/addressbook/system/contacts.db - in SQLite3 format.
Data is stored EDS, file is /home/user/.local/share/evolution/addressbook/system/contacts.db - in SQLite3 format.
== Qalendar ==


TODO: Cover features, including import/export, online awareness/presence, telepathy
TODO: Cover features, including import/export, online awareness/presence, telepathy
== Synchronising ==
One way to synchronize is CardDAV. The commands below assume that you have already set up synchronisation as discussed in [[Calendar]].
<pre>
syncevolution --configure \
    database=http://localhost:5223/USER/UUID/ \
    backend=carddav \
    target-config@radicale contacts
syncevolution --configure \
    sync=two-way \
    backend=evolution-contacts \
    radicale contacts
</pre>
And then run the initial sync:
<pre>
syncevolution --sync slow radicale contacts
</pre>
Then, if you want to synchronise:
<pre>
syncevolution --sync two-way radicale contacts
</pre>
== Syncevolution-frontend ==
The custom Maemo Syncevolution frontend has also been ported and is available in the application manager; which can be used to set up scheduled synchronisation.

Revision as of 10:31, 10 October 2022

Contacts
Status Working
Devices all
Leste repo https://github.com/maemo-leste/osso-addressbook
Category Category:Office
Packager User:Wizzup


Contacts

Data is stored EDS, file is /home/user/.local/share/evolution/addressbook/system/contacts.db - in SQLite3 format.

TODO: Cover features, including import/export, online awareness/presence, telepathy