mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
* use <h3> and <hr> elements to separate configuration directives * use <code> elements to mark constants, fs paths, module names etc. * fix unneeded "\_" escaping * fix list formatting
639 B
639 B
Dovecot SASL
The 'auth.dovecot_sasl' module implements the client side of the Dovecot authentication protocol, allowing maddy to use it as a credentials source.
Currently SASL mechanisms support is limited to mechanisms supported by maddy so you cannot get e.g. SCRAM-MD5 this way.
auth.dovecot_sasl {
endpoint unix://socket_path
}
dovecot_sasl unix://socket_path
Configuration directives
endpoint schema://address
Default: not set
Set the address to use to contact Dovecot SASL server in the standard endpoint format.
tcp://10.0.0.1:2222
for TCP, unix:///var/lib/dovecot/auth.sock
for Unix
domain sockets.