1# Dovecot SASL23The 'auth.dovecot_sasl' module implements the client side of the Dovecot4authentication protocol, allowing maddy to use it as a credentials source.56Currently SASL mechanisms support is limited to mechanisms supported by maddy7so you cannot get e.g. SCRAM-MD5 this way.89```10auth.dovecot_sasl {11 endpoint unix://socket_path12}1314dovecot_sasl unix://socket_path15```1617## Configuration directives1819### endpoint _schema://address_20Default: not set2122Set the address to use to contact Dovecot SASL server in the standard endpoint23format.2425`tcp://10.0.0.1:2222` for TCP, `unix:///var/lib/dovecot/auth.sock` for Unix26domain sockets.