.. _radicale: ####### Radicale ####### This page is currently being written. .. _radicale_oauth2: OAuth 2 authentication ====================== .. note:: These steps are automatic if you use an up-to-date modoboa-installer to install/upgrade. Installing radicale oauth plugin -------------------------------- You need to install ``radicale-modoboa-auth-oauth2`` python package inside radicale venv. If you used the installer you can use the following commands: .. sourcecode:: bash > sudo -u radicale -i bash > cd ~ > env/bin/pip install radicale-modoboa-auth-oauth2 Oauth application creation -------------------------- You first need to register Radicale as an authorized consumer of the OAuth2 authentication service provided by Modoboa. To do so, create an application with the following commands: .. sourcecode:: bash > cd > python manage.py createapplication --name=Radicale --skip-authorization --client-id=radicale confidential client-credentials On success, you should see an output similar to:: New application Radicale created successfully. client_secret: XXXX To enable OAuth2 authentication in Radicale, edit the :file:`/etc/radicale/config` file and update the `type` in `[auth]` to:: type = radicale_modoboa_auth_oauth2 Then, add the following line in `[auth]`:: oauth2_introspection_endpoint = https://radicale:@/api/o/introspect/ Replace ```` with the value you obtained earlier.