A page in your DokuWiki was added or changed. Here are the details: Date : 2012/10/20 09:25 Browser : Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:16.0) Gecko/20100101 Firefox/16.0 IP-Address : 82.225.22.177 Hostname : lyon.oodo.net Old Revision: http://ltb-project.org/wiki/documentation/self-service-password/0.8/config_general?rev=1350717635 New Revision: http://ltb-project.org/wiki/documentation/self-service-password/0.8/config_general Edit Summary: User : coudot
@@ -21,13 +21,19 @@ <file php> $lang ="en"; </file> - ===== Help messages ===== + ===== Messages ===== Help messages provide information to users on how use the interface. They can be disabled with ''$show_help'': <file php> $show_help = false; + </file> + + You can add extra messages by setting values in these parameters: + <file php> + $messages['passwordchangedextramessage'] = "Congratulations!"; + $messages['changehelpextramessage'] = "Contact us if you are lost..."; </file> ===== Logo ===== @@ -50,5 +56,12 @@ You need a key phrase if you use ciphered tokens (see [[config_tokens]]) <file php> $keyphrase = "secret"; </file> + + There is also a protection on login to avoid LDAP injections. Some characters are forbidden, you can change the list of forbidden characters in login with ''$login_forbidden_chars'': + <file php> + $login_forbidden_chars = "*()&|"; + </file> + + <note>If no characters are configured in ''$login_forbidden_chars'', only alphanumeric characters are allowed.</note> -- 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
