Re: Setting security options when using ldap with sasl

2008-04-27 Thread Markus Moeller
I got i bit further with my problem. I firstly modified NET::LDAP.pm (line 392) by adding ssf to the connection property when using SASL. $sasl_conn->property( sockname => $ldap->{net_ldap_socket}->sockname, peername => $ldap->{net_ldap_socket}->peername, ssf => 0, ); This

Re: Setting security options when using ldap with sasl

2008-04-22 Thread Markus Moeller
Does nobody else experienced my problem ? Any hint how I could debug it ? Thank you Markus "Markus Moeller" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] At the moment I use Authen:SASL as follows use Net::LDAPS; use Authen::SASL; use Authen::Krb5; $ldap = Net::LDAPS->new(

Re: Setting security options when using ldap with sasl

2008-03-02 Thread Markus Moeller
At the moment I use Authen:SASL as follows use Net::LDAPS; use Authen::SASL; use Authen::Krb5; $ldap = Net::LDAPS->new( $server, port => 636, timeout => 2, verify => 'never', version => 3) or