Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions src/main/distrib/data/defaults.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1797,6 +1797,10 @@ realm.salesforce.orgId = 0
realm.ldap.server = ldap://localhost

# Login username for LDAP searches.
# This is usually a user with permissions to search LDAP users and groups.
# It must have at least have the permission to search users. If it does not
# have permission to search groups, the normal user logging in must have
# the permission in LDAP to search groups.
# If this value is unspecified, anonymous LDAP login will be used.
#
# e.g. mydomain\\username
Expand All @@ -1809,8 +1813,14 @@ realm.ldap.username = cn=Directory Manager
# SINCE 1.0.0
realm.ldap.password = password

# Bind pattern for Authentication.
# Allow to directly authenticate an user without LDAP Searches.
# Bind pattern for user authentication.
# Allow to directly authenticate an user without searching for it in LDAP.
# Use this if the LDAP server does not allow anonymous access and you don't
# want to use a specific account to run searches. When set, it will override
# the settings realm.ldap.username and realm.ldap.password.
# This requires that all relevant user entries are children to the same DN,
# and that logging users have permission to search for their groups in LDAP.
# This will disable synchronization as a specific LDAP account is needed for that.
#
# e.g. CN=${username},OU=Users,OU=UserControl,OU=MyOrganization,DC=MyDomain
#
Expand Down Expand Up @@ -1926,6 +1936,9 @@ realm.ldap.email = email
realm.ldap.uid = uid

# Defines whether to synchronize all LDAP users and teams into the user service
# This requires either anonymous LDAP access or that a specific account is set
# in realm.ldap.username and realm.ldap.password, that has permission to read
# users and groups in LDAP.
#
# Valid values: true, false
# If left blank, false is assumed
Expand Down
Loading