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