A page in your DokuWiki was added or changed. Here are the details:

Date        : 2011/12/18 23:40
Browser     : Mozilla/5.0 (Ubuntu; X11; Linux i686; rv:8.0) Gecko/20100101 
Firefox/8.0
IP-Address  : 82.225.22.177
Hostname    : lyon.oodo.net
Old Revision: 
http://ltb-project.org/wiki/documentation/self-service-password/0.7/config_ppolicy?rev=1311324241
New Revision: 
http://ltb-project.org/wiki/documentation/self-service-password/0.7/config_ppolicy
Edit Summary: 
User        : coudot

@@ -12,18 +12,18 @@
    * CRYPT
    * clear
  
  Set one of them in ''$hash'':
- <file>
+ <file php>
  $hash = "clear";
  </file>
  
  <note important>This option is ignored with Active Directory mode.</note>
  
  ===== Size =====
  
  Set minimal and maximal length in ''$pwd_min_length'' and ''$pwd_max_length'':
- <file>
+ <file php>
  $pwd_min_length = 4;
  $pwd_max_length = 8;
  </file>
  
@@ -31,39 +31,39 @@
  
  ===== Characters =====
  
  You can set the minimal number of lower, upper, digit and special characters:
- <file>
+ <file php>
  $pwd_min_lower = 3;
  $pwd_min_upper = 1;
  $pwd_min_digit = 1;
  $pwd_min_special = 1;
  </file>
  
  Special characters are defined with a regular expression, by default:
- <file>
+ <file php>
  $pwd_special_chars = "^a-zA-Z0-9";
  </file>
  
  This means special characters are all characters except alphabetical letters 
and digits.
  
  You can also disallow characters from being in password, with 
''$pwd_forbidden_chars'':
- <file>
+ <file php>
  $pwd_forbidden_chars = "@%";
  </file>
  
  This means that ''@'' and ''%'' could not be present in a password.
  
  You can define how many different class of characters (lower, upper, digit, 
special) are needed in the password:
  
- <file>
+ <file php>
  $pwd_complexity = 2;
  </file>
  
  ===== Reuse =====
  
  You can prevent a user from using his old password as a new password if this 
check is not done by the directory:
- <file>
+ <file php>
  $pwd_no_reuse = true;
  </file>
  
  ===== Show policy =====
@@ -72,8 +72,8 @@
    * ''always'': policy is always displayed
    * ''never'': policy is never displayed
    * ''onerror'': policy is only displayed if password is rejected because of 
it, and the user provided his old password correctly.
  
- <file>
+ <file php>
  $pwd_show_policy = "never";
  </file>
  



-- 
This mail was generated by DokuWiki at
http://ltb-project.org/wiki/

_______________________________________________
ltb-changes mailing list
[email protected]
http://lists.ltb-project.org/listinfo/ltb-changes

Reply via email to