We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We encountered a problem with users with multiple mail address entries, the LDAP server's response became a list instead of a string and did not work.
The following little patch to services/web/app/src/Features/Contacts/ContactController.js fixed this:
the line
entry['email'] = obj['mail']
should be:
entry['email'] = obj['uid'] + '@example.com'
This filters the results and works for us.
The text was updated successfully, but these errors were encountered:
Thank you for your solution. I’ll close this issue as it’s a duplicate of #22. Further discussions can be continued there.
Sorry, something went wrong.
mail
No branches or pull requests
We encountered a problem with users with multiple mail address entries, the LDAP server's response became a list instead of a string and did not work.
The following little patch to services/web/app/src/Features/Contacts/ContactController.js fixed this:
the line
entry['email'] = obj['mail']
should be:
entry['email'] = obj['uid'] + '@example.com'
This filters the results and works for us.
The text was updated successfully, but these errors were encountered: