diff --git a/v3.html b/v3.html index cb2c6022..4ec64ee8 100644 --- a/v3.html +++ b/v3.html @@ -183,9 +183,6 @@ with the WSGI server
  • logging
  • headers
  • hook
  • -
  • rabbitmq_endpoint
  • -
  • rabbitmq_topic
  • -
  • rabbitmq_queue_type
  • reporting
  • @@ -281,12 +278,16 @@ structure.

    Installation

    -

    Radicale is really easy to install and works out-of-the-box.

    +

    Radicale is really easy to install (for testing purposes) and works +out-of-the-box.

    python3 -m pip install --upgrade https://github.com/Kozea/Radicale/archive/master.tar.gz
     python3 -m radicale --logging-level info --storage-filesystem-folder=~/.var/lib/radicale/collections

    When the server is launched, open http://localhost:5232 in your browser! You can login with any username and password.

    Want more? Check the tutorials and the documentation.

    +

    Instead of downloading from PyPI look for packages provided by used +distribution, they contain +also startup scripts to run daemonized.

    What's New?

    @@ -932,8 +933,9 @@ server.

    This can be used to provide the username from a reverse proxy.

    ldap : Use a LDAP or AD server to authenticate users.

    -

    dovecot : Use a local Dovecot server to authenticate +

    dovecot : Use a Dovecot server to authenticate users.

    +

    imap : Use a IMAP server to authenticate users.

    Default: none

    @@ -1074,12 +1076,40 @@ alikes, 'groupMembership' on Novell eDirectory, ...

    the server certificate

    Default:

    +
    +
    dovecot_connection_type = AF_UNIX
    +

    Connection type for dovecot authentication +(AF_UNIX|AF_INET|AF_INET6)

    +

    Note: credentials are transmitted in cleartext

    +

    Default: AF_UNIX

    +
    dovecot_socket

    The path to the Dovecot client authentication socket (eg. /run/dovecot/auth-client on Fedora). Radicale must have read / write access to the socket.

    -

    Default:

    +

    Default: /var/run/dovecot/auth-client

    +
    +
    +
    dovecot_host
    +

    Host of via network exposed dovecot socket

    +

    Default: localhost

    +
    +
    +
    dovecot_port
    +

    Port of via network exposed dovecot socket

    +

    Default: 12345

    +
    +
    +
    imap_host
    +

    IMAP server hostname: address | address:port | [address]:port | +imap.server.tld

    +

    Default: localhost

    +
    +
    +
    imap_security
    +

    Secure the IMAP connection: tls | starttls | none

    +

    Default: tls

    lc_username
    @@ -1339,23 +1369,23 @@ be specified.

    rabbitmq : Push the message to the rabbitmq server.

    Default: none

    - -
    -

    rabbitmq_endpoint

    +
    +
    rabbitmq_endpoint

    End-point address for rabbitmq server. Ex: amqp://user:password@localhost:5672/

    Default:

    -
    -

    rabbitmq_topic

    +
    +
    rabbitmq_topic

    RabbitMQ topic to publish message.

    Default:

    -
    -

    rabbitmq_queue_type

    +
    +
    rabbitmq_queue_type

    RabbitMQ queue type for the topic.

    Default: classic

    +

    reporting