-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathldap.properties
More file actions
58 lines (49 loc) · 1.67 KB
/
ldap.properties
File metadata and controls
58 lines (49 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# The endpoint URL for your ldap server
#
ldap.url=ldaps://ldap.example.com:636/
#
# The DN template to use for authenticating users.
# The token {username} will be replaced by the user's username.
#
ldap.user-dn-template=uid={username},dc=example,dc=com
#
# The group filter to determine if the user should be allowed to log in to Mirth Connect.
#
ldap.group-filter=(&(objectClass=groupOfUniqueNames)(cn=mirth-admin)(ou=groups)(uniqueMember=uid={username},dc=example,dc=com))
#
# The base DN for searching for users in groups.
# There is some overlap here with ldap.group-filter
#
ldap.base-dn=dc=example,dc=com
#
# The number of times to retry in the event of a network, etc. error.
# Default: 3
# Max: 100
#
ldap.retries=3
#
# The amount of time (in ms) to wait between retries.
# Default: 1000 (1 second)
# Max: 10000 (10 seconds)
ldap.retry-interval=1000
#
# Whether to allow local logins or not if the user isn't found in the LDAP database.
# Default: false
#
ldap.fallback-to-local-authentication=false
#
# The context factory class name to use for the initial LDAP context.
# You probably shouldn't change this unless you really know what you are doing.
#
#ldap.context-factory-class-name=com.sun.jndi.ldap.LdapCtxFactory
#
# Maps Mirth usernames to LDAP usernames.
# For example, a user Mirth user "mary" has an LDAP username of "mjones".
# Mary wants to login to Mirth with "mary" but needs to authenticate with
# the LDAP server as "mjones", so you map "mary=mjones".
#
# Mapped usernames are separated by commas, you can escape a comma with a
# backslash. Usernames are mapped with an equals sign, you can escape an =
# with a backslash as well.
#ldap.username-map=mary=mjones,alice=ajones