Open chumbri opened 10 years ago
In order to get a successful connection to MS AD, I had to insert the following line into the ldap.py module before line 166:
_self.ldap.set_option(ldap.OPTREFERRALS,0)
See the following FAQ from the python-ldap module: http://www.python-ldap.org/faq.shtml 12th topic of the FAQ
As long as it doesn't break other things, it might be added to a future release.
Seems like a sensible change to me.
In order to get a successful connection to MS AD, I had to insert the following line into the ldap.py module before line 166:
_self.ldap.set_option(ldap.OPTREFERRALS,0)
See the following FAQ from the python-ldap module: http://www.python-ldap.org/faq.shtml 12th topic of the FAQ
As long as it doesn't break other things, it might be added to a future release.