ldaptor
ldaptor copied to clipboard
LDAP server, client and utilities, using Twisted Python
updates: - [github.com/asottile/pyupgrade: v2.26.0 → v2.28.0](https://github.com/asottile/pyupgrade/compare/v2.26.0...v2.28.0) - [github.com/mgedmin/check-manifest: 0.46 → 0.47](https://github.com/mgedmin/check-manifest/compare/0.46...0.47)
There is a TODO that implies better handling of an unknown BER type was intended: https://github.com/twisted/ldaptor/blob/4bfe2897c8b9b510d647fb1c2a5b50c88d492ab1/ldaptor/protocols/pureber.py#L382 We would like to alter this behavior, since it causes a number of issues...
Resolve the deferred returned by `send_multiResponse` and `send_multiResponse_ex` when a handler is provided and the final response has been handled. This makes using `send_multiResponse` and `send_multiResponse_ex` easier if the caller...
After updating to Twisted 22.4, the test suite hangs at `testGetBaseDNNoOption` producing as many temporary empty config files as the filesystem would allow. Workaround: Remove the cleanup line here: https://github.com/twisted/ldaptor/blob/4bfe2897c8b9b510d647fb1c2a5b50c88d492ab1/ldaptor/test/test_config.py#L27
It's possible for `key` to be either `"objectClass"` or `b"objectClass"`. Other places use this self._object_class_keys to handle this scenario.
Hello, I was trying to use the ldaptor proxy feature to manipulate ldap responses but I just realized that my client application uses VLV searches and, apparently, those break the...
As stated in the title, the mixin ignores the limit, which means that a simple ldap server implementation based on `LDAPServer` as per the example in the documentation will return...
I read the tutorial https://ldaptor.readthedocs.io/en/latest/quickstart.html and learned how to load LDAP entries from a static LDIF. Since I want to load contact from SQL database, I raised a question and...
- `asText` function errors out when we try to print the human friendly text for the filters. This commit tries to fix the same. - Updated tests related to the...
Hi, I use merger https://ldaptor.readthedocs.io/en/latest/cookbook/merger.html I've got a problem. I have 2 LDAP servers. Sometime one LDAP server is offline. How can I handle if LDAP is offline (1st is...