Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - straffin

Pages: [1]
1
Announcements / Re: Feng Office 2.0 RC has been released!
« on: March 13, 2012, 05:13:02 pm »
+1 for Upgrade info from 2.0b3 or b4. Can we? (I need to!)  :-[

2
I also have that same code in my Contact.class.php.

As I said non-SSL LDAP Authentication works just dandy. However, non-SSL LDAP Authentication also passes passwords over the wire in clear-text. This is bad.

Based on some more searching and a peek at the Net_LDAP2 docs, I've also now tried adding the following to my ldap.config.php with no success:

Code: [Select]
  $config_ldap = array (
      'binddn'    => '',
      'bindpw'    => '',
      'starttls'  => false,
      'ssl'   => true,
      'basedn'    => 'ou=People,dc=domain,dc=com',
      'host'      => 'ldap.domain.com',
      'port'      => '636',
      'uid'       => 'uid'
  );

Anyone know how to use "ldap_set_option" to debug the connection?

3
All,

Anyone have any information on getting an SSL/TLS connection to work with Feng's LDAP integration? Everything works fine with an anonymous bind *without* SSL...

Code: [Select]
$config_ldap = array (
      'binddn'    => '',
      'bindpw'    => '',
      'basedn'    => 'ou=people,dc=domain,dc=com',
      'host'      => 'ldap.domain.com',
      'uid'       => 'uid'
  );

But fails when I add the SSL/TLS information...

Code: [Select]
$config_ldap = array (
      'binddn'    => '',
      'bindpw'    => '',
      'starttls'  => true,
      'basedn'    => 'ou=people,dc=domain,dc=com',
      'host'      => 'ldap.domain.com:636',
      'uid'       => 'uid'
  );

Have also tried it with "ldaps://" in the host, no luck. Anyone?

Pages: [1]