CHANGELOG.TXT:

- updated with latest changes

functions.inc.php
- whitespace fixes


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@561 a1433add-5e2c-0410-b055-b7f2511e0802
postfixadmin-2.3
Christian Boltz 16 years ago
parent e218b81af2
commit 48f3be29bf

@ -15,13 +15,14 @@ Only in SVN trunk
----------------- -----------------
Version 2.3 - 2009/01/30 - SVN r557 Version 2.3 - 2009/02/03 - SVN r561
----------------------------------- -----------------------------------
- vacation.pl: make it strip/discover addresses better, slightly better logging, stop it - vacation.pl: make it strip/discover addresses better, slightly better logging, stop it
requiring a messageid requiring a messageid
- added ADDITIONS/delete-mailq-by-domain.pl (by Jose Nilton) - added ADDITIONS/delete-mailq-by-domain.pl (by Jose Nilton)
- added ADDITIONS/quota_usage.pl (by Jose Nilton) - produces report of quota usage - added ADDITIONS/quota_usage.pl (by Jose Nilton) - produces report of quota usage
- some small bugfixes - added support for courier authlib authentication flavors ($CONF['authlib_default_flavor'])
- some small bugfixes and language updates
Version 2.3 Beta - 2009/01/15 - SVN r527 Version 2.3 Beta - 2009/01/15 - SVN r527

@ -256,7 +256,7 @@ function check_domain ($domain)
flash_error("emailcheck_resolve_domain is enabled, but function (checkdnsrr) missing!"); flash_error("emailcheck_resolve_domain is enabled, but function (checkdnsrr) missing!");
} }
} }
return true; return true;
} }
@ -1162,23 +1162,23 @@ function pacrypt ($pw, $pw_db="")
} }
if ($CONF['encrypt'] == 'authlib') { if ($CONF['encrypt'] == 'authlib') {
$flavor = $CONF['authlib_default_flavor']; $flavor = $CONF['authlib_default_flavor'];
$salt = ' '; $salt = ' ';
if(ereg('^{.*}', $pw_db)) { if(ereg('^{.*}', $pw_db)) {
// we have a flavor in the db -> use it instead of default flavor // we have a flavor in the db -> use it instead of default flavor
$result = split('{|}', $pw_db, 3); $result = split('{|}', $pw_db, 3);
$flavor = $result[1]; $flavor = $result[1];
$salt = substr($result[2], 0, 2); $salt = substr($result[2], 0, 2);
} }
if(stripos($flavor, 'md5raw') === 0) { if(stripos($flavor, 'md5raw') === 0) {
$password = '{' . $flavor . '}' . md5($pw); $password = '{' . $flavor . '}' . md5($pw);
} else if(stripos($flavor, 'md5') === 0) { } else if(stripos($flavor, 'md5') === 0) {
$password = '{' . $flavor . '}' . base64_encode(md5($pw, TRUE)); $password = '{' . $flavor . '}' . base64_encode(md5($pw, TRUE));
} else if(stripos($flavor, 'crypt') === 0) { } else if(stripos($flavor, 'crypt') === 0) {
$password = '{' . $flavor . '}' . crypt($pw, $salt); $password = '{' . $flavor . '}' . crypt($pw, $salt);
} }
} }
$password = escape_string ($password); $password = escape_string ($password);

Loading…
Cancel
Save