mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
26 lines
653 B
Markdown
26 lines
653 B
Markdown
# 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
|
|
|
|
**Syntax**: endpoint _schema://address_ <br>
|
|
**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.
|