From: Johannes B. <jo...@br...> - 2004-01-31 05:25:10
|
Hi. Michael Ströder wrote: > Johannes Beigel wrote: >> I use python-ldap with SASL/Digest-MD5 authentication. With each >> sasl_bind_s() I get output like: >> >> SASL/DIGEST-MD5 authentication started >> SASL username: admin@gandalf >> SASL SSF: 128 >> SASL installing layers > Post your code. Sorry, I forgot. The relevant code snippet is this: self.ldap = ldap.initialize(uri) sasl = ldap.sasl.digest_md5(ADMIN_WITH_REALM, ADMIN_PW) self.ldap.sasl_bind_s(ADMIN_DN, sasl) After reading your mail, I also tried the following lines instead of the simple call to ldap.initialize() without a change in the output of the program: self.ldap = ldap.initialize(uri, trace_level=0) self.ldap.set_option(ldap.OPT_DEBUG_LEVEL, 0) But I guess, 0 is the default value for OPT_DEBUG_LEVEL and trace_level anyway. (For trace_level this is documented in python-ldap documentation.) Ciao, jojo. |