Commit | Line | Data |
---|---|---|
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 | ||
13 | // the password changing mechanism you're using | |
14 | $cpw_backend = 'template'; | |
15 | ||
16 | ||
17 | $cpw_pass_min_length = 4; | |
18 | $cpw_pass_max_length = 25; | |
19 | ||
91e0dccc | 20 | $cpw_require_ssl = FALSE; |