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 = "110"; // 110 is most common
10 $CFG->auth_instructions = "Use the same username and password as your school email account"; // Instructions
13 function auth_user_login ($username, $password) {
14 // Returns true if the username and password work
15 // and false if they are wrong or don't exist.
19 switch ($CFG->auth_pop3type) {
21 $host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3}INBOX";
24 $host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3/ssl/novalidate-cert}INBOX";
28 if ($connection = imap_open($host, $username, $password, OP_HALFOPEN)) {
29 imap_close($connection);