roundcube-pw.conf 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Password Plugin options
  3. // -----------------------
  4. // A driver to use for password change. Default: "sql".
  5. // See README file for list of supported driver names.
  6. $rcmail_config['password_driver'] = 'vesta';
  7. // Require the new password to be a certain length.
  8. // set to blank to allow passwords of any length
  9. $rcmail_config['password_minimum_length'] = 6;
  10. // Require the new password to contain a letter and punctuation character
  11. // Change to false to remove this check.
  12. $rcmail_config['password_require_nonalpha'] = false;
  13. // Enables logging of password changes into logs/password
  14. $rcmail_config['password_log'] = false;
  15. // Comma-separated list of login exceptions for which password change
  16. // will be not available (no Password tab in Settings)
  17. $rcmail_config['password_login_exceptions'] = null;
  18. // By default domains in variables are using unicode.
  19. // Enable this option to use punycoded names
  20. $rcmail_config['password_idn_ascii'] = false;
  21. // Vesta Driver options
  22. // -----------------------
  23. // Control Panel host
  24. $rcmail_config['password_vesta_host'] = 'localhost';
  25. $rcmail_config['password_vesta_port'] = '8083';