Class: auth_imap
Source Location: /security/class.auth_imap.inc
Class auth_imap
Method Summary
| boolean |
canMd5() |
Does this authentication method support md5 encoding of passwords? Imap authentication cannot support md5 encoding of passwords |
Methods
Does this authentication method support md5 encoding of passwords? Imap authentication cannot support md5 encoding of passwords
API Tags:
Redefinition of:
- auth_interface::canMd5()
- Does the authentication method support md5 encoding of passwords?
int validateUser(
String
$user, String
$passwd
)
|
|
Authenticate a user.
Parameters:
|
String |
$user: |
The login of the user to authenticate. |
|
String |
$passwd: |
The password of the user. Note: if the canMd5 function of an implementation returns true, $passwd will be passed as an md5 string. |
API Tags:
| Return: | AUTH_SUCCESS - Authentication succesful AUTH_MISMATCH - Authentication failed, wrong user/password combination AUTH_LOCKED - Account is locked, can not login with current username. AUTH_ERROR - Authentication failed due to some error which cannot be solved by just trying again. If you return this value, you *must* also fill the m_fatalError variable. |
Redefinition of:
- auth_interface::validateUser()
- Authenticate a user.