When a user uses the "Password" button/icon in webmail, it shows them just the first part of thei
r username instead of the full emailid@domainName address as their username. So, changing their p
assword doesn't work.
Edit the file /etc/psa-horde/passwd/conf.php. This path /etc/psa-horde will change according to t
he plesk horde setting.
Find the line that says:
$conf['hooks']['default_username'] = false;
Modfiy the code line to
$conf['hooks']['default_username'] = true;
Now, create a new file hooks.php
like /etc/psa-horde/horde/hooks.php (the path /etc/psa-horde will change according to the situati
on)
In this file, paste the following:
/**
* Horde Hooks configuration file.
**/
if (!function_exists('_passwd_hook_default_username')) {
function _passwd_hook_default_username($userid)
{
return $userid;
}
}
/** DO NOT PLACE A ?> AT THE END OF THIS FILE **/
Most probably, you can find the file hook.php in the corresponding path with the above code comme
nted. Uncomment the line.
Now users can use the Password button in Webmail, and it will work correctly.
0
The password changing option in horde webmail is not working
The password changing option in horde webmail is not working
Wednesday, November 7, 2007
Posted in: Horde | 0 Comments | Email This
Subscribe to:
Post Comments (RSS)
0 Responses to "The password changing option in horde webmail is not working"
Post a Comment