radicale-remind

Radicale Remind, Abook and Taskwarrior storage backend


Keywords
Radicale
License
GPL-3.0+
Install
pip install radicale-remind==0.5.0

Documentation

Radicale Remind Storage

Radicale storage backends providing a two way sync for Remind, Abook and Taskwarrior. Remind files included from the main file are exported as individual iCal calendars, Taskwarrior projects as individual iCal todo lists. Also see the limitations sections for Remind limitations and Taskwarrior limitations for what can be converted.

Dependencies

Installation

You need to have the Remind and Taskwarrior command line tools installed if you want to use the respective adapters. For Debian/Ubuntu use:

$ sudo apt-get install remind taskwarrior

Using pip

$ pip install radicale-remind

This will install all Python dependencies as well.

Using python-setuptools

$ python3 setup.py install

Config

[server]
hosts = 0.0.0.0:5232

[rights]
type = from_file
file = /home/user/.config/radicale/rights

[storage]
type = radicale_remind
filesystem_folder = /home
remind_file = /home/user/.reminders
abook_file = /home/user/.abook/addressbook
task_folder = /home/user/.task

Put this into /home/user/.config/radicale/config (replace /home/user by your $HOME). The remind_file, abook_file and task_folder are optional, and can be removed if not used.

[root]
user: .*
collection: .*
permissions: RrWw

Put this into /home/user/.config/radicale/rights. This is needed to allow access to collections with a slash in the name like .abook/addressbook/. Please read the Radicale documentation for how to set up secure connections and authentication.

Run

$ radicale

Add http://hostname:5232 to your CalDAV clients, like DAVx⁵ available in F-Droid.

Client test

$ curl -u u:p -X PROPFIND -H "Depth: 1" -d "<propfind><prop></prop></propfind>" "http://localhost:5232"
$ curl -u u:p "http://localhost:5232/user/.reminders/"
$ curl -u u:p "http://localhost:5232/user/.abook/addressbook/"
$ curl -u u:p "http://localhost:5232/user/.task/all_projects/"