Modifications to MailZu to allow MySQL CRYPT'd passwords for authentication

by Robert Cooper (racooper -at- users.sourceforge.net) 04/05/2007
This commit is contained in:
Mario Fetka
2011-02-11 15:15:16 +01:00
parent e8d8d896ad
commit 18f71affd5
2 changed files with 28 additions and 0 deletions

View File

@@ -237,6 +237,10 @@ $conf['auth']['dbTableMail'] = '';
// true = passwords are md5 encrypted in database
// false = passwords are cleartext in database
$conf['auth']['dbIsMd5'] = true;
// Password hash is (or isn't) MySQL CRYPT()'d in database
// dbIsMd5 and dbIsCrypt are mutually exclusive. Only one
// can be 'true', but both could be 'false' for plaintext.
$conf['auth']['dbIsCrypt'] = false;
/*** Exchange 5.5 Authentication Settings ***/