2 // Authentication by looking up a POP3 server
4 // This code is completely untested so far - IT NEEDS TESTERS!
5 // Looks like it should work though ...
7 $CFG->auth_pop3host = "127.0.0.1"; // Should be IP number
8 $CFG->auth_pop3type = "pop3"; // pop3, pop3cert
9 $CFG->auth_pop3port = "100"; // 143, 993, 100, 119
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_pop3type) {
20 $host = "{$CFG->auth_pop3host:$CFG->auth_pop3port/pop3}INBOX";
23 $host = "{$CFG->auth_pop3host:$CFG->auth_pop3port/pop3/ssl/novalidate-cert}INBOX";
27 if ($connection = imap_open($host, $username, $password, OP_HALFOPEN)) {
28 imap_close($connection);