|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/doc/dovecot-1.0.7/wiki/ |
Upload File : |
Exim and Dovecot SASL
=====================
Exim v4.64+ users can use Dovecot SASL instead of Cyrus SASL for authenticating
SMTP clients.
dovecot.conf
------------
auth default {
* mechanisms = plain login # .. passdb and userdb configuration .. socket
listen {
* client {
* path = /var/run/dovecot/auth-client mode = 0666
}
}
}
exim.conf
---------
Create an authenticator for Dovecot:
---%<-------------------------------------------------------------------------
dovecot:
driver = dovecot
public_name = PLAIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1
---%<-------------------------------------------------------------------------
FIXME: Create also one for LOGIN? I can't seem to find any working example
configuration.
(This file was created from the wiki on 2007-06-15 04:42)