In this section the following parameters are defined:
SCHEMA_THREAD_TIME_LIMIT
Defines a time limit in milliseconds on the time it takes Deja to read the schema. The default value is no time limit.
REFERRALS_MANAGE_DSA
With this option set to true, entries with the object class referral are treated like normal entries. With this option set to false, Deja returns a search reference result. The default value is true.
BROWSER_ENTRY_LIMIT
Specifies the maximum number of entries that can be displayed in the browser. If a limit has been set, you must refresh some subtrees before opening more. The default value is no limit.
BROWSER_SUBENTRY_LIMIT
Defines the maximum number of immediate children of an entry that can be displayed in the browser. The default value is no limit.
BROWSER_LOAD_SUBNODES_TIME_LIMIT
Specifies the maximum amount of time allowed for Deja to load the children of a node when the node is opened in the browser. This is not the amount of time it then takes to display those children. The default value is 10000 milliseconds.
BROWSER_CHECK_NODE_TIME_LIMIT
This is the maximum time taken for Deja to verify if an entry is a leaf or a node. The default value is 2000 milliseconds.
STANDARD_SECURITY_AUTHENTICATION
Defines the standard authentication mechanism used in the login panel. This can have one of two values: simple or CRAM-MD5. The default value is CRAM-MD5.
# schema thread time limit in milliseconds (0 = no limit) SCHEMA_THREAD_TIME_LIMIT=0 # # manage referrals as entries (true or false) REFERRALS_MANAGE_DSA=true # # max. number of nodes in browser tree (0 = no limit) BROWSER_ENTRY_LIMIT=0 # max number of subnodes of a node in the browser tree (0 = no limit) BROWSER_SUBENTRY_LIMIT=0 # time limit to load subnodes (in ms, 0 = no limit) BROWSER_LOAD_SUBNODES_TIME_LIMIT=10000 # time limit to verify if entry is a leaf or an inner node (in ms, 0 = no limit) BROWSER_CHECK_NODE_TIME_LIMIT=2000 # # authentication mechanism # supported values : CRAM-MD5, simple (cleartext password) STANDARD_SECURITY_AUTHENTICATION=CRAM-MD5 # STANDARD_SECURITY_AUTHENTICATION=simple |