-
Notifications
You must be signed in to change notification settings - Fork 7
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
Cannot read LDIF file when entry has no attributes #5
Comments
BTW, it probably doesn't matter, but just in case, this is the ldapsearch command which generates the problematic LDIF file:
That is out of a shell script, hence the ${...} variables which the shell script defines earlier... |
FYI, for anyone else who runs into this, you can also work around it by making sure your output includes at least one attribute value. We were encountering this when parsing the output of a script that was only retrieving DNs.
|
I ran an ldapsearch against AD, to dump all entries my account has permission to see.
(I am using OpenLDAP ldapsearch client.)
I get back an LDIF file which includes some entries with no attributes:
etc...
I am not sure why. Maybe I have permission to see the entry exists but not read it?
Now, I try to parse this LDIF file with node-ldif. And it gets a syntax error when it gets to these entries because the attributes are missing.
I realise that per RFC2849 this is invalid syntax and node-ldif is just following the RFC:
But, given real world LDIF files seem to violate the spec in this way, it would be nice if node-ldif could be a bit more forgiving, even if just as an option...
As a workaround, I use this script to pre-process my LDIF file:
but would be nice if there was an out-of-the-box solution.
The text was updated successfully, but these errors were encountered: