mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 21:21:27 +00:00
- added new configuration parameters
This commit is contained in:
parent
c6e0689cff
commit
7eb1173ebe
|
@ -25,6 +25,8 @@
|
||||||
- expandFolderTree: 0 to start with tree hidden
|
- expandFolderTree: 0 to start with tree hidden
|
||||||
- 1 to start with tree shown and first level expanded
|
- 1 to start with tree shown and first level expanded
|
||||||
- 2 to start with tree shown fully expanded
|
- 2 to start with tree shown fully expanded
|
||||||
|
- stopWordsFile: path to stop word file for indexer
|
||||||
|
- sortUsersInList: how to sort users in lists ('fullname' or '' (default))
|
||||||
-->
|
-->
|
||||||
<edition
|
<edition
|
||||||
strictFormCheck = "false"
|
strictFormCheck = "false"
|
||||||
|
@ -35,6 +37,8 @@
|
||||||
enableFullSearch = "true"
|
enableFullSearch = "true"
|
||||||
enableFolderTree = "true"
|
enableFolderTree = "true"
|
||||||
expandFolderTree = "1"
|
expandFolderTree = "1"
|
||||||
|
stopWordsFile = ""
|
||||||
|
sortUsersInList = ""
|
||||||
|
|
||||||
>
|
>
|
||||||
</edition>
|
</edition>
|
||||||
|
@ -82,6 +86,10 @@
|
||||||
- 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
|
||||||
|
- passwordStrength: minimum strength of password, set to 0 to disable
|
||||||
|
- passwordExpiration: number of days after password expires
|
||||||
|
- passwordHistory: number of remembered passwords
|
||||||
|
- passwordStrengthAlgorithm: algorithm used to calculate password strenght (simple or advanced)
|
||||||
-->
|
-->
|
||||||
<authentication
|
<authentication
|
||||||
enableGuestLogin = "false"
|
enableGuestLogin = "false"
|
||||||
|
@ -89,6 +97,11 @@
|
||||||
restricted = "true"
|
restricted = "true"
|
||||||
enableUserImage = "false"
|
enableUserImage = "false"
|
||||||
disableSelfEdit = "false"
|
disableSelfEdit = "false"
|
||||||
|
passwordStrength="0"
|
||||||
|
passwordExpiration="0"
|
||||||
|
passwordHistory="0"
|
||||||
|
passwordStrengthAlgorithm="simple"
|
||||||
|
loginFailure="0"
|
||||||
>
|
>
|
||||||
<connectors>
|
<connectors>
|
||||||
<!-- ***** CONNECTOR LDAP *****
|
<!-- ***** CONNECTOR LDAP *****
|
||||||
|
|
Loading…
Reference in New Issue
Block a user