config_default.php 654 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Change Password plugin configuration vars
  4. *
  5. * NOTE: probably you need to configure your specific backend too!
  6. *
  7. * @copyright &copy; 2005-2007 The SquirrelMail Project Team
  8. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  9. * @version $Id$
  10. * @package plugins
  11. * @subpackage change_password
  12. */
  13. /** the password changing mechanism you're using */
  14. $cpw_backend = 'template';
  15. /** the minimum and maximum length that the plugin will enforce on new passwords */
  16. $cpw_pass_min_length = 4;
  17. $cpw_pass_max_length = 25;
  18. /** whether we require the use of SSL/https to change a password */
  19. $cpw_require_ssl = FALSE;