You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- // Plugin configuration for password
- // See /usr/share/roundcube/plugins/password/config.inc.php.dist for instructions
- // Check the access right of the file if you put sensitive information in it.
- $config['password_driver'] = 'sql';
- $config['password_minimum_length'] = 12;
- $config['password_force_save'] = true;
- $config['password_algorithm'] = 'dovecot';
- $config['password_dovecotpw'] = '/usr/bin/doveadm pw -s BLF-CRYPT';
- $config['password_dovecotpw_method'] = 'BLF-CRYPT';
- $config['password_dovecotpw_with_method'] = true;
- $config['password_db_dsn'] = 'mysql://mailadmin:{{ispmail_mysql_mailadmin_password}}@localhost/mailserver';
- $config['password_query'] = "UPDATE virtual_users SET password=%D WHERE email=%u";
|