home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / auth_mail_servers.inc < prev    next >
Text File  |  2004-03-08  |  697b  |  21 lines

  1. <?php
  2. /*
  3. specify IMAP or POP3 servers here that Group-Office may use to authenticate in the following form:
  4.  
  5. $auth_imap_servers[0]['domain'] = 'intermesh.nl';
  6. $auth_imap_servers[0]['ip'] = '192.168.1.1';
  7. $auth_imap_servers[0]['port'] = '143';
  8. $auth_mail_servers[0]['type'] = 'imap';
  9. $auth_mail_servers[0]['mbroot'] = 'INBOX.';
  10. $auth_mail_servers[0]['add_domain_to_username'] = 'true';
  11. */
  12.  
  13. $auth_mail_servers[0]['domain'] = 'localhost.localdomain';
  14. $auth_mail_servers[0]['ip'] = 'localhost/notls';
  15. $auth_mail_servers[0]['port'] = '143';
  16. $auth_mail_servers[0]['type'] = 'imap';
  17. $auth_mail_servers[0]['mbroot'] = '';
  18. $auth_mail_servers[0]['add_domain_to_username'] = 'false';
  19.  
  20. ?>
  21.