Amint a felhasználók birtokba veszik postafiókjaikat, szinte azonnal jelentkezni fog az egyik leggyakoribb probléma: hol tudják megváltoztatni a jelszavukat? Erre szolgál a Roundcube Password pluginje.
A Roundcube config.inc.php fájlját egészítsük ki egy sorral:
$config['plugins'] = array('password');
Készítsünk egy másolatot a Password plugin konfigurációs fájlról:
cd ./plugins/password cp config.inc.php.dist config.inc.php
A Password plugin config.inc.php fájl tartalma legyen:
<?php $config['password_driver'] = 'sql'; $config['password_confirm_current'] = true; $config['password_minimum_length'] = 8; $config['password_require_nonalpha'] = false; $config['password_log'] = true; $config['password_login_exceptions'] = null; $config['password_hosts'] = null; $config['password_force_save'] = false; $config['password_force_new_user'] = false; $config['password_db_dsn'] = 'mysql://postfix:Pa$$w0rd@localhost/postfix'; $config['password_query'] = 'UPDATE mailbox SET password=%c WHERE username=%u'; $config['password_crypt_hash'] = 'md5'; $config['password_idn_ascii'] = false; $config['password_dovecotpw_method'] = 'CRAM-MD5'; $config['password_dovecotpw_with_method'] = false; $config['password_hash_algorithm'] = 'sha1'; $config['password_hash_base64'] = false; $config['password_blowfish_cost'] = 12;
Most lépj be a Roundcube programba, és válaszd a jobb felső sarokban a Beállítások menüpontot. A bal oldali menüsorban megjelenik egy új menüpont, Jelszó néven. A többi már gyerekjáték...