* removed need to modify backend files. everything is controlled with
[squirrelmail.git] / plugins / change_password / config_default.php
CommitLineData
27663afe 1<?php
2
882acf90 3/**
4 * Change Password plugin configuration vars
27663afe 5 *
6 * NOTE: probably you need to configure your specific backend too!
7 *
882acf90 8 * @version $Id$
9 * @package plugins
10 * @subpackage change_password
27663afe 11 */
12
1f4dadde 13/** the password changing mechanism you're using */
27663afe 14$cpw_backend = 'template';
15
1f4dadde 16/** the minimum and maximum length that the plugin will enforce on new passwords */
27663afe 17$cpw_pass_min_length = 4;
18$cpw_pass_max_length = 25;
19
1f4dadde 20/** whether we require the use of SSL/https to change a password */
21$cpw_require_ssl = FALSE;
22