Skip to Content.
Sympa Menu

devel - [sympa-dev] Support for ldap start_tls

Subject: Developers of Sympa

List archive

Chronological Thread  
  • From: Atom Powers <address@concealed>
  • To: address@concealed
  • Subject: [sympa-dev] Support for ldap start_tls
  • Date: Mon, 14 Aug 2006 19:10:38 -0700


Can somebody please look into adding support for the ldap start_tls command in the next version.

Here is some sample code for wwwsympa.fcgi (5.2.1) <attached>.

Can anybody direct me to the code that processes the ldap lookup for the actual lists?

(Note: I'm not subscribed to this list.)

--
Perfection is just a word I use occasionally with mustard.
--Atom Powers--
Systems Administrator
DigiPen Institute of Technology
(425) 895-4443
2408 } else {
2409 $ldap_anonymous = Net::LDAP->new($host,timeout =>
$ldap->{'timeout'});
2410 }
2411
>> 2412 if ( $ldap->{'use_start_tls'} ) {
>> 2413 my %param;
>> 2414 $param{'verify'} = $ldap->{'ca_verify'} if
>> ($ldap->{'ca_verify'});
>> 2415 $param{'sslversion'} = $ldap->{'ssl_version'} if
>> ($ldap->{'ssl_version'});
>> 2416 $ldap_anonymous->start_tls(%param);
>> 2417 }
2418
2419 unless ($ldap_anonymous ){
2420 &wwslog ('err','Unable to connect to the LDAP server
%s',$host);
2421 next;
2422 }



Archive powered by MHonArc 2.6.19+.

Top of Page