Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

14 wiersze
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";