aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 43f6d7842f20a6ea9f73fcc3529d3c161120485a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# InfCloud for Radicale

Integrate [InfCloud](https://www.inf-it.com/open-source/clients/infcloud/) into [Radicale](http://radicale.org/)'s web interface.

InfCloud allows you to to manage appointments, tasks and contacts in the browser.

**Bug:** At least one calendar (appointments + tasks) and one addressbook must exist
for InfCloud to work properly. Otherwise the "Refresh" button is broken.

## Installation

```shell
$ python3 -m pip install --upgrade https://github.com/Unrud/RadicaleInfCloud/archive/master.tar.gz
```

## Configuration

Set the configuration option `type` in the `web` section to ``radicale_infcloud``.

```ini
[web]
type = radicale_infcloud
```

## License

[AGPL-3.0](https://github.com/Unrud/RadicaleWeb/blob/master/COPYING) because [InfCloud](https://github.com/Unrud/RadicaleInfCloud/blob/master/radicale_infcloud/web/) is included.

[GPL-3.0](https://github.com/Unrud/RadicaleWeb/blob/master/COPYING_GPL) for `radicale_infcloud/__init__.py`
bgstack15