add new fields

This commit is contained in:
Uwe Steinmann 2023-08-25 12:32:49 +02:00
parent 13bb99f729
commit d602484f4b

View File

@ -120,6 +120,7 @@
- restricted: Restricted access: only allow users to log in if they have an entry in the local database (irrespective of successful authentication with LDAP). - restricted: Restricted access: only allow users to log in if they have an entry in the local database (irrespective of successful authentication with LDAP).
- enableUserImage: enable users images - enableUserImage: enable users images
- disableSelfEdit: if true user cannot edit his own profile - disableSelfEdit: if true user cannot edit his own profile
- disableChangePassword: if true user cannot change the password
- passwordStrength: minimum strength of password, set to 0 to disable - passwordStrength: minimum strength of password, set to 0 to disable
- passwordStrengthAlgorithm: algorithm used to calculate password strenght (simple or advanced) - passwordStrengthAlgorithm: algorithm used to calculate password strenght (simple or advanced)
- passwordExpiration: number of days after password expires - passwordExpiration: number of days after password expires
@ -137,6 +138,7 @@
restricted = "true" restricted = "true"
enableUserImage = "false" enableUserImage = "false"
disableSelfEdit = "false" disableSelfEdit = "false"
disableChangePassword = "false"
passwordStrength = "0" passwordStrength = "0"
passwordStrengthAlgorithm = "simple" passwordStrengthAlgorithm = "simple"
passwordExpiration = "0" passwordExpiration = "0"
@ -168,6 +170,7 @@
bindDN = "" bindDN = ""
bindPw = "" bindPw = ""
filter = "" filter = ""
groupField = ""
/> />
<!-- ***** CONNECTOR Microsoft Active Directory ***** <!-- ***** CONNECTOR Microsoft Active Directory *****
- enable: enable/disable connector - enable: enable/disable connector
@ -189,6 +192,8 @@
accountDomainName = "example.com" accountDomainName = "example.com"
bindDN = "" bindDN = ""
bindPw = "" bindPw = ""
filter = ""
groupField = ""
/> />
</connectors> </connectors>
</authentication> </authentication>