I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
I use a mysql database maildb
with a table users
with two fileds id
='[email protected]'
and crypt
='salted_md5_hash'
. Password is updated with a query like this:
UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = '[email protected]';
Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install
Howto setup roundcube password plugin to work with the above installation?