Re: [Postfixadmin-devel] Roundcube password plugin w/ postfixadmin
Brought to you by:
christian_boltz,
gingerdog
From: Robert M. <rg...@ht...> - 2016-03-25 12:35:19
|
I have it working on Centos. On 03/25/2016 07:04 AM, Simone Piccardi wrote: > Il 25/03/2016 05:15, Gabriel Filion ha scritto: >> Hello, >> >> Does anyone here have any experience with a roundcube plugin that would >> let users change their postfixadmin passwords from within roundcube? > There is a "password" plugin. > > It can update a password via an SQL query. If you are using: > > $CONF['encrypt'] = 'md5crypt'; > > you can put: > > $config['password_db_dsn'] = > 'mysql://postfixadmin:longandverycomplexpassword@localhost/postfixadmin'; > $config['password_query'] = 'UPDATE mailbox SET password=%c WHERE > username=%u LIMIT 1'; > > in plugins/password/config.inc.php > > it worked at least with the debian postfixadmin package and the last > roundcube version. > > Simone |