Hello Emilio,
On 2013-09-30 19:57, Emilio López wrote:
Hi is there any ways of autenticating against 2 different ldaps? Also
yes. To do so set $config['ENABLE_SAAS'] = 1 in config-site.php Then login as admin and go to administration -> ldap, and add the 2 ldap servers. Then go to administration
as I understood if I have ldap and imap configured it will try first with ldap and then with IMAP is that right? How can I authenticate
correct
against a pop server?
yes. I've just added that code :-) set the following in config-site.php:
$config['ENABLE_POP3_AUTH'] = 1; $config['POP3_HOST'] = 'mail.yourdomain.com'; $config['POP3_PORT'] = 110; $config['POP3_SSL'] = false; (you are free to enable ssl for pop3) Janos
