2022-02-21 08:52:09 +00:00
|
|
|
# tokidoki
|
|
|
|
|
|
|
|
Tokidoki is a (WIP) carddav and caldav server.
|
2022-05-13 14:54:51 +01:00
|
|
|
|
2022-05-19 11:22:41 +01:00
|
|
|
## Architecture
|
|
|
|
|
|
|
|
Tokidoki relies on [go-webdav][1] for the protocol implementation. It provides
|
|
|
|
the storage backend and authentication, both of which are easily pluggable.
|
|
|
|
|
|
|
|
It currently provides:
|
|
|
|
|
|
|
|
Authentication:
|
|
|
|
|
|
|
|
* IMAP (working)
|
|
|
|
|
|
|
|
Storage:
|
|
|
|
|
|
|
|
* Filesystem (working)
|
|
|
|
* PostgreSQL (planned)
|
|
|
|
|
|
|
|
[1]: https://github.com/emersion/go-webdav "go-webdav project page on Github"
|
|
|
|
|
2022-05-13 14:54:51 +01:00
|
|
|
## Building
|
|
|
|
|
|
|
|
* `cd cmd/tokidoki && go build`
|
|
|
|
|
|
|
|
## Running
|
|
|
|
|
2022-05-19 11:22:41 +01:00
|
|
|
Using the IMAP authentication backend and the filesystem storage backend
|
|
|
|
(directory must exist):
|
2022-05-13 14:54:51 +01:00
|
|
|
|
|
|
|
* `./tokidoki -auth.url imaps://imap.example.com:993 -storage.url file:///path/to/storage -debug`
|