maddy

Fork https://github.com/foxcpp/maddy

git clone git://git.lin.moe/go/maddy.git

 1# Dovecot SASL
 2
 3The 'auth.dovecot_sasl' module implements the client side of the Dovecot
 4authentication protocol, allowing maddy to use it as a credentials source.
 5
 6Currently SASL mechanisms support is limited to mechanisms supported by maddy
 7so you cannot get e.g. SCRAM-MD5 this way.
 8
 9```
10auth.dovecot_sasl {
11	endpoint unix://socket_path
12}
13
14dovecot_sasl unix://socket_path
15```
16
17## Configuration directives
18
19### endpoint _schema://address_
20Default: not set
21
22Set the address to use to contact Dovecot SASL server in the standard endpoint
23format.
24
25`tcp://10.0.0.1:2222` for TCP, `unix:///var/lib/dovecot/auth.sock` for Unix
26domain sockets.