On Mon, 2011-08-22 at 12:00 -0400, users-request(a)exim4u.org wrote:
Re: Debian upgrade - failed web login
I think its the crypt_password function under /exim4u/config/functions.php i have the same issue with i upgraded my Debian to squeeze, the php crypt function is not functioning well in the new php on squeez. i dont remeber what the old values where but compare your crypt_password function to my and modify accordly. if ($salt != '') { if ($cryptscheme == 'des') { $salt = substr($salt, 0, 2); } else if ($cryptscheme == 'md5') { $salt = substr($salt, 0, 12); } else { $salt = ''; } $cryptedpass = crypt($clear, $salt); } else { $cryptedpass = crypt($clear); } } return $cryptedpass;