2 // Authentication by looking up an IMAP server
4 // This code is completely untested so far - I'm just jotting down ideas ...
5 // Looks like it should work though ...
7 $CFG->auth_imaphost = "localhost";
8 $CFG->auth_imapport = "143"; // 143, 993, 100, 119
9 $CFG->auth_imaptype = "imap"; // imap, imapssl, pop3, nntp
12 function auth_user_login ($username, $password) {
13 // Returns true if the username and password work
14 // and false if they are wrong or don't exist.
18 switch ($CFG->auth_imaptype) {
20 $host = "{$CFG->auth_imaphost:$CFG->auth_imapport}INBOX";
23 $host = "{$CFG->auth_imaphost:$CFG->auth_imapport/imap/ssl}INBOX";
26 $host = "{$CFG->auth_imaphost:$CFG->auth_imapport/pop3}INBOX";
29 $host = "{$CFG->auth_imaphost:$CFG->auth_imapport/nntp}comp.test";
33 if ($connection = imap_open($host, $username, $password)) {
34 imap_close($connection);