A page in your DokuWiki was added or changed. Here are the details: Date : 2010/07/30 13:02 Browser : Mozilla/5.0 (X11; U; Linux i686; fr-FR; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8 IP-Address : 213.41.232.151 Hostname : dslm0.nerim.lyon.linagora.net Old Revision: http://ltb-project.org/wiki/documentation/self-service-password/0.4/config_ppolicy?rev=1280487016 New Revision: http://ltb-project.org/wiki/documentation/self-service-password/0.4/config_ppolicy Edit Summary: User : coudot
@@ -17,4 +17,57 @@ $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> + $pwd_min_length = 4; + $pwd_max_length = 8; + <file> + + <note tip>Set ''0'' in ''$pwd_max_length'' to disable maximal length.</note> + + ===== Characters ===== + + You can set the minimal number of lower, upper, digit and special characters: + <file> + $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> + $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> + $pwd_forbidden_chars = "@%"; + </file> + + This means that ''@'' and ''%'' could not be present in a password. + + ===== Reuse ===== + + You can prevent a user from using its old password as a new password if thsi check is not done by the directory: + <file> + $pwd_no_reuse = true; + </file> + + ===== Show policy ===== + + Password policy can be displayed to user by configuring ''$pwd_show_policy''. Three values are accepted: + * ''always'': policy is always displayed + * ''never'': policy is never displayed + * ''onerror'': policy is only displayed if password is rejected because of it. + + <file> + $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
