several messages can be pushed in one array_push
[squirrelmail.git] / plugins / change_password / config.php
index 484734ea4713c71f96fe6d005d342dcedb0d081c..be42921dee8c914b65c8f84eff6e2155b981e7f2 100644 (file)
@@ -1,17 +1,22 @@
 <?php
 
-/* Change Password plugin configuration vars
+/**
+ * Change Password plugin configuration vars
  *
  * NOTE: probably you need to configure your specific backend too!
  *
- * $Id $
+ * @version $Id$
+ * @package plugins
+ * @subpackage change_password
  */
 
-// the password changing mechanism you're using
+/** the password changing mechanism you're using */
 $cpw_backend = 'template';
 
-
+/** the minimum and maximum length that the plugin will enforce on new passwords */
 $cpw_pass_min_length = 4;
 $cpw_pass_max_length = 25;
 
+/** whether we require the use of SSL/https to change a password */
 $cpw_require_ssl = FALSE;
+