1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
<?php //-*-php-*-
rcs_id('$Id: IMAP.php,v 1.5 2005/04/25 19:46:08 rurban Exp $');
/* Copyright (C) 2004 $ThePhpWikiProgrammingTeam
* This file is part of PhpWiki. Terms and Conditions see LICENSE. (GPL2)
*/
class _IMAPPassUser
extends _PassUser
/**
* Define the var IMAP_AUTH_HOST in config/config.ini (with port probably)
*
* Preferences are handled in _PassUser
*/
{
function checkPass($submitted_password) {
if (!$this->isValidName()) {
trigger_error(_("Invalid username."),E_USER_WARNING);
return $this->_tryNextPass($submitted_password);
}
if (!$this->_checkPassLength($submitted_password)) {
return WIKIAUTH_FORBIDDEN;
}
$userid = $this->_userid;
$mbox = @imap_open( "{" . IMAP_AUTH_HOST . "}",
$userid, $submitted_password, OP_HALFOPEN );
if ($mbox) {
imap_close($mbox);
$this->_authmethod = 'IMAP';
$this->_level = WIKIAUTH_USER;
return $this->_level;
} else {
if ($submitted_password != "") { // if LENGTH 0 is allowed
trigger_error(_("Unable to connect to IMAP server "). IMAP_AUTH_HOST,
E_USER_WARNING);
}
}
return $this->_tryNextPass($submitted_password);
}
//CHECKME: this will not be okay for the auth policy strict
function userExists() {
return true;
if (checkPass($this->_prefs->get('passwd')))
return true;
return $this->_tryNextUser();
}
function mayChangePass() {
return false;
}
}
// $Log: IMAP.php,v $
// Revision 1.5 2005/04/25 19:46:08 rurban
// trivial tuning by michael pruitt. Patch #1120185
//
// Revision 1.4 2004/12/26 17:11:17 rurban
// just copyright
//
// Revision 1.3 2004/12/20 16:05:01 rurban
// gettext msg unification
//
// Revision 1.2 2004/12/19 00:58:02 rurban
// Enforce PASSWORD_LENGTH_MINIMUM in almost all PassUser checks,
// Provide an errormessage if so. Just PersonalPage and BogoLogin not.
// Simplify httpauth logout handling and set sessions for all methods.
// fix main.php unknown index "x" getLevelDescription() warning.
//
// Revision 1.1 2004/11/01 10:43:58 rurban
// seperate PassUser methods into seperate dir (memory usage)
// fix WikiUser (old) overlarge data session
// remove wikidb arg from various page class methods, use global ->_dbi instead
// ...
//
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|