Skip to content

Commit

Permalink
update changelog and doc and config for #1678
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiering committed Jan 14, 2025
1 parent ed6a5a8 commit a93af6f
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## 3.4.1.dev
* Add: option [auth] dovecot_connection_type / dovecot_host / dovecot_port

## 3.4.0
* Add: option [auth] cache_logins/cache_successful_logins_expiry/cache_failed_logins for caching logins
Expand Down
22 changes: 21 additions & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -967,11 +967,31 @@ The path to the CA file in pem format which is used to certificate the server ce

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`

##### lc_username

Expand Down
13 changes: 13 additions & 0 deletions config
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,19 @@
# The path to the CA file in pem format which is used to certificate the server certificate
#ldap_ssl_ca_file =

# Connection type for dovecot authentication (AF_UNIX|AF_INET|AF_INET6)
# Note: credentials are transmitted in cleartext
#dovecot_connection_type = AF_UNIX

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

# Host of via network exposed dovecot socket
#dovecot_host = localhost

# Port of via network exposed dovecot socket
#dovecot_port = 12345

# Htpasswd filename
#htpasswd_filename = /etc/radicale/users

Expand Down

0 comments on commit a93af6f

Please sign in to comment.