LDAP User Property Names Mapping all parameters in JTS
Hello Team,
I am using JTS 6.0.2, Is there any other attribute apart from UserId,Name & emailAddress in User Property Names Mapping. like department & Phone number etc.
My server is stup to sync user details from LDAP and i need users department information how can i do it
User Property Names Mapping: userId=uid,name=cn,emailAddress=mail
Accepted answer
One other answer
You could write your own scheduled task to achieve that:
- Retrieve contributor
- Query LDAP to get other attributes for contributor (e.g., department, phone number, etc.)
- Update contributor with the retrieved values
Cheers.