added phpdoc blocks.
[squirrelmail.git] / plugins / change_password / config.php
... / ...
CommitLineData
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
17$cpw_pass_min_length = 4;
18$cpw_pass_max_length = 25;
19
20$cpw_require_ssl = FALSE;