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.
 
 
 
 
 
 

14 line
723 B

  1. <?php
  2. // Plugin configuration for password
  3. // See /usr/share/roundcube/plugins/password/config.inc.php.dist for instructions
  4. // Check the access right of the file if you put sensitive information in it.
  5. $config['password_driver'] = 'sql';
  6. $config['password_minimum_length'] = 12;
  7. $config['password_force_save'] = true;
  8. $config['password_algorithm'] = 'dovecot';
  9. $config['password_dovecotpw'] = '/usr/bin/doveadm pw -s BLF-CRYPT';
  10. $config['password_dovecotpw_method'] = 'BLF-CRYPT';
  11. $config['password_dovecotpw_with_method'] = true;
  12. $config['password_db_dsn'] = 'mysql://mailadmin:{{ispmail_mysql_mailadmin_password}}@localhost/mailserver';
  13. $config['password_query'] = "UPDATE virtual_users SET password=%D WHERE email=%u";