Open
Bug 1979293
Opened 3 months ago
Updated 2 months ago
Document LDAP bind password constraints
Categories
(Bugzilla :: Bugzilla-General, enhancement)
Tracking
()
UNCONFIRMED
People
(Reporter: georg+mozilla, Unassigned)
Details
Attachments
(1 file)
Steps to reproduce:
I read the documentation.
Actual results:
It did not explain constraints for "LDAPbinddn", giving the impression of all passwords being supported.
Expected results:
It should have explained that colons must not be contained in the password due to use of split()
on the colon character.
I will submit a patch.
Comment 1•3 months ago
|
||
Comment 2•2 months ago
|
||
/Bugzilla/Auth/Verify/LDAP.pm:
- my ($LDAPbinddn, $LDAPbindpass) = split(":", Bugzilla->params->{"LDAPbinddn"});
+ my ($LDAPbinddn, $LDAPbindpass) = split(":", Bugzilla->params->{"LDAPbinddn"}, 2);
You need to log in
before you can comment on or make changes to this bug.
Description
•