A page in your DokuWiki was added or changed. Here are the details: Date : 2012/10/20 09:17 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/migration?rev=1324246658 New Revision: http://ltb-project.org/wiki/documentation/self-service-password/0.8/migration Edit Summary: User : coudot
@@ -2,18 +2,46 @@ If you use packages, your configuration will be kept. To use new feature, you can add these parameters: <file php> - # Force account unlock when password is changed - $ad_options['force_unlock'] = false; - # Force user change password at next login - $ad_options['force_pwd_change'] = false; + # Position of password policy constraints message: + # above - the form + # below - the form + $pwd_show_policy_pos = "above"; - # Shadow options - require shadowAccount objectClass - # Update shadowLastChange - $shadow_options['update_shadowLastChange'] = false; - - # Customize theme (see http://code.google.com/intl/de-DE/apis/recaptcha/docs/customization.html) - # Examples: red, white, blackglass, clean - $recaptcha_theme = "white"; + ## SMS + # Use sms + $use_sms = true; + # GSM number attribute + $sms_attribute = "mobile"; + # Send SMS mail to address + $smsmailto = "{sms_attribute}@service.provider.com"; + # Subject when sending email to SMTP to SMS provider + $smsmail_subject = "SMS token"; + # Message + $sms_message = "username:user1\n" . + "password:passwd\n" . + "numberfrom:1234\n" . + "text:{smsresetmessage} {smstoken}"; + # SMS token length + $sms_token_length = 6; + + # Invalid characters in login + # Set at least "*()&|" to prevent LDAP injection + # If empty, only alphanumeric characters are accepted + $login_forbidden_chars = "*()&|"; + + # Force HTTPS for recaptcha HTML code + $recaptcha_ssl = false; + + ## Default action + # change + # sendtoken + # sendsms + $default_action = "change"; + + ## Extra messages + # They can also be defined in lang/ files + #$messages['passwordchangedextramessage'] = NULL; + #$messages['changehelpextramessage'] = NULL; </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
