On 5/2/07, Sylvain Th=E9nault <syl...@lo...> wrote:
> forwarding this message since I'm now subscribed.
>
> ----- Forwarded message from Sylvain Th=E9nault <sylvain.thenault@logilab=
.fr> -----
>
> > From: Sylvain Th=E9nault <syl...@lo...>
> > To: pyt...@li...
> > Date: Wed, 2 May 2007 13:10:39 +0200
> > Subject: Active directory signature
> >
> > Hi there !
> >
> > I've some customer code which has been recently broken, since they
> > upgraded to AD3. It's some basic authentication code using python-ldap
> > (I'm not sure which version is installed on their servers). Their
> > microsoft expert told them it was because they changed the "Domain
> > controller: LDAP server signing requirements" option to "Require signin=
g",
basically saying they now require authentication. you just need to
determine what credentials have been setup to allow whatev er task it
is you want to accomplish, then specify them inside your python-ldap
program. something similar to:
l=3Dldap.initialize("ldap://your.server.com")
l.bind('cn=3Dthe_cn_you_use,dc=3Dserver,dc=3Dcom', 'passwor=
d')
change 'cn' to 'uid' or whatever it is that your bind requires. set
that to a user which has permissions to do whatever it is you are
trying to do, simple searches, modifying entries, etc.
> > which I can beleive... Is this supported by python-ldap ? If so does
> > someone has an idea about what should I change to make it work again ?
> >
> > Sorry if this question has already been asked but all I get from sf
> > servers hosting mailing list archives is internal server error :(
> >
> > PS: please CC me I'm not subscribed to the list
> > --
> > Sylvain Th=E9nault LOGILAB, Paris (France=
)
> > Formations Python, Zope, Plone, Debian: http://www.logilab.fr/formatio=
ns
> > D=E9veloppement logiciel sur mesure: http://www.logilab.fr/servic=
es
> > Python et calcul scientifique: http://www.logilab.fr/science
> >
>
> ----- End forwarded message -----
>
> --
> Sylvain Th=E9nault LOGILAB, Paris (France)
> Formations Python, Zope, Plone, Debian: http://www.logilab.fr/formations
> D=E9veloppement logiciel sur mesure: http://www.logilab.fr/services
> Python et calcul scientifique: http://www.logilab.fr/science
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> Python-LDAP-dev mailing list
> Pyt...@li...
> https://lists.sourceforge.net/lists/listinfo/python-ldap-dev
>
|