2002-11-16 03:49:32 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
// Authentication by looking up a POP3 server
|
|
|
|
|
|
|
|
// This code is completely untested so far - IT NEEDS TESTERS!
|
|
|
|
// Looks like it should work though ...
|
|
|
|
|
|
|
|
$CFG->auth_pop3host = "127.0.0.1"; // Should be IP number
|
|
|
|
$CFG->auth_pop3type = "pop3"; // pop3, pop3cert
|
2002-11-16 03:56:00 +00:00
|
|
|
$CFG->auth_pop3port = "110"; // 110 is most common
|
2002-11-17 09:57:34 +00:00
|
|
|
$CFG->auth_instructions = "Use the same username and password as your school email account"; // Instructions
|
2002-11-16 03:49:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
function auth_user_login ($username, $password) {
|
|
|
|
// Returns true if the username and password work
|
|
|
|
// and false if they are wrong or don't exist.
|
|
|
|
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
switch ($CFG->auth_pop3type) {
|
|
|
|
case "pop3":
|
2002-11-17 09:57:34 +00:00
|
|
|
$host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3}INBOX";
|
2002-11-16 03:49:32 +00:00
|
|
|
break;
|
|
|
|
case "pop3cert":
|
2002-11-17 09:57:34 +00:00
|
|
|
$host = "{".$CFG->auth_pop3host.":$CFG->auth_pop3port/pop3/ssl/novalidate-cert}INBOX";
|
2002-11-16 03:49:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($connection = imap_open($host, $username, $password, OP_HALFOPEN)) {
|
|
|
|
imap_close($connection);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|