1 IMAP Autentication Settings
2 ---------------------------
4 To configure MailZu to authenticate users against IMAP,
5 edit the config/config.php and tailor the variables mentioned here for your
8 Select the IMAP authentication method:
11 ldap -> Standard LDAP server, e.g. OpenLDAP
12 ad -> MS Active Directory
13 sql -> PHP PEAR compatible database
14 exchange -> MS Exchange 5.5
17 $conf['auth']['serverType'] = 'imap';
20 These three attributes are enough to be authenticated to the MailZu interface:
22 /*** IMAP Authentication Settings ***/
23 // List of IMAP servers and ports (e.g.: 10.1.1.20:143)
24 $conf['auth']['imap_hosts'] = array( 'imap.example.com:993' );
29 imaptls -> do not do start-TLS to encrypt the session, even with servers that support it
30 imapssl -> use the Secure Socket Layer to encrypt the session
31 imapcert -> use the Secure Socket Layer to encrypt the session,
32 do not validate certificates from TLS/SSL server, needed if server uses self-signed certificates
34 $conf['auth']['imap_type'] = 'imapssl';
36 // Domain name part of the email address, (e.g.: example.com)
37 $conf['auth']['imap_domain_name'] = 'example.com';