Advertisement
Guest User

ldap propreties

a guest
May 8th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. ldap.authentication.active=true
  2. # Base DN containing users
  3. ldap.authentication.userNameFormat=
  4. # The URL to connect to the LDAP server
  5. ldap.authentication.java.naming.provider.url=ldap://ldap.ostb.co.za:389
  6. # The authentication mechanism to use
  7. ldap.authentication.java.naming.security.authentication=simple
  8. ldap.authentication.defaultAdministratorUserNames=admin,alfresco
  9.  
  10. ldap.synchronization.active=true
  11. # The default principal to use (only used for LDAP sync)
  12. ldap.synchronization.java.naming.security.principal=CN=Alfresco,OU=Applications,DC=kses,DC=net
  13. # The password for the default principal (only used for LDAP sync)
  14. ldap.synchronization.java.naming.security.credentials=alfresco
  15.  
  16.  
  17. # The query to select all objects that represent the groups to import.
  18. ldap.synchronization.groupQuery=(objectclass\=groupOfNames)
  19. # The query to select objects that represent the groups to import that have changed since a certain time.
  20. ldap.synchronization.groupDifferentialQuery=(&(objectclass\=groupOfNames)(!(modifyTimestamp<\={0})))
  21. # The query to select all objects that represent the users to import.
  22. ldap.synchronization.personQuery=(objectclass\=inetOrgPerson)
  23. # The query to select objects that represent the users to import that have changed since a certain time.
  24. ldap.synchronization.personDifferentialQuery=(&(objectclass\=inetOrgPerson)(!(modifyTimestamp<\={0})))
  25. # The group search base restricts the LDAP group query to a sub section of tree on the LDAP server.
  26. ldap.synchronization.groupSearchBase=ou\=Groups,dc\=kses,dc\=net
  27. # The user search base restricts the LDAP user query to a sub section of tree on the LDAP server.
  28. ldap.synchronization.userSearchBase=OU\=Users,DC\=kses,DC\=net
  29. # The name of the operational attribute recording the last update time for a group or user.
  30. ldap.synchronization.modifyTimestampAttributeName=modifyTimestamp
  31. # The timestamp format. Unfortunately, this varies between directory servers.
  32. ldap.synchronization.timestampFormat=yyyyMMddHHmmss'Z'
  33. synchronization.synchronizeChangesOnly=false
  34. synchronization.import.cron=0 0 1 * * ?
  35. synchronization.syncWhenMissingPeopleLogIn=true
  36. synchronization.autoCreatePeopleOnLogin=true
  37.  
  38. # The attribute name on people objects found in LDAP to use as the uid in Alfresco
  39. ldap.synchronization.userIdAttributeName=uid
  40. # The attribute on person objects in LDAP to map to the first name property in Alfresco
  41. ldap.synchronization.userFirstNameAttributeName=givenName
  42. # The attribute on person objects in LDAP to map to the last name property in Alfresco
  43. ldap.synchronization.userLastNameAttributeName=sn
  44. # The attribute on person objects in LDAP to map to the organizational id property in Alfresco
  45. ldap.synchronization.userOrganizationalIdAttributeName=o
  46. # The default home folder provider to use for people created via LDAP import
  47. ldap.synchronization.defaultHomeFolderProvider=userHomesHomeFolderProvider
  48. # The attribute on LDAP group objects to map to the gid property in Alfrecso
  49. ldap.synchronization.groupIdAttributeName=cn
  50. # The person type in LDAP
  51. ldap.synchronization.personType=inetOrgPerson
  52. # The attribute in LDAP on group objects that defines the DN for its members
  53. ldap.synchronization.groupMemberAttributeName=member
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement