Re: [Postfixadmin-devel] Roundcube password plugin w/ postfixadmin
Brought to you by:
christian_boltz,
gingerdog
From: Gabriel F. <ga...@le...> - 2016-03-29 16:01:21
|
Simone Piccardi: > 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. wow great, thanks for the really clear example. I'll test this out! :) |