-
Notifications
You must be signed in to change notification settings - Fork 116
Clarify binding options and remove mention of deny_null_bind #1337
New issue
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
Conversation
Vercel Previews Deployed
|
| In order for `userfilter` to apply for authenticated searches, `binddn` and `bindpass` must be set. | ||
| For anonymous search, `discoverdn` must be set to `true`, and `deny_null_bind` must be set to false. | ||
| The LDAP auth method supports the following methods for resolving the user object used to authenticate the end user: | ||
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: | |
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. You can search in two ways: |
Style correction: avoid "this" as a pronoun
| In order for `userfilter` to apply for authenticated searches, `binddn` and `bindpass` must be set. | ||
| For anonymous search, `discoverdn` must be set to `true`, and `deny_null_bind` must be set to false. | ||
| The LDAP auth method supports the following methods for resolving the user object used to authenticate the end user: | ||
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: | |
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. You can search in two ways: |
Edited to match
| In order for `userfilter` to apply for authenticated searches, `binddn` and `bindpass` must be set. | ||
| For anonymous search, `discoverdn` must be set to `true`, and `deny_null_bind` must be set to false. | ||
| The LDAP auth method supports the following methods for resolving the user object used to authenticate the end user: | ||
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: | |
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. You can search in two ways: |
Edited to match
| In order for `userfilter` to apply for authenticated searches, `binddn` and `bindpass` must be set. | ||
| For anonymous search, `discoverdn` must be set to `true`, and `deny_null_bind` must be set to false. | ||
| The LDAP auth method supports the following methods for resolving the user object used to authenticate the end user: | ||
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. This search can performed in one of two ways: | |
| - **Search** - Searches the LDAP server directory for the user object based on the provided username. You can search in two ways: |
Edited to match
Broken Link CheckerNo broken links found! 🎉 |
Co-authored-by: Sarah Chavis <[email protected]>
The LDAP auth method docs were erroneously stating anonymous search required the
deny_null_bindparameter to be set to false. This PR removes mention of this parameter and clarifies the options for resolving the DN of the login user.