您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

14 行
724 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_mailserver_password}}@localhost/mailserver';
  13. $config['password_query'] = "UPDATE virtual_users SET password=%D WHERE email=%u";