Summary | Default for LDAP version should be 3 |
Queue | Horde Base |
Queue Version | HEAD |
Type | Enhancement |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | kevin_myer (at) iu13 (dot) org |
Created | 11/19/2005 (7190 days ago) |
Due | |
Updated | 11/21/2005 (7188 days ago) |
Assigned | |
Resolved | 11/21/2005 (7188 days ago) |
Milestone | |
Patch | No |
State ⇒ Resolved
with your patch *all* LDAP configurations default to 3 then, right?
the version to $conf['foo']['params']['version']. Ingo and Turba
both have config files (backends.php, sources.php) that default to 3
and the driver code checks to see what version is specified in the
respective config file. So I'm not sure what else you need for this.
with your patch *all* LDAP configurations default to 3 then, right?
LDAP. Though we're soon moving to OpenLDAP 2.x (with LDAPv3 as the
default), I imagine there are others in our situation.
LDAP. Though we're soon moving to OpenLDAP 2.x (with LDAPv3 as the
default), I imagine there are others in our situation.
apps where we set the protocol version. Please upload a patch for all
of them (in one file).
config items defaulting to version 3 and two LDAP config items
defaulting to version 2, with a goal of making the defaults be
internally consistent.
Auth, Prefs, and Groups, and the Account Block all have code to set
the version to $conf['foo']['params']['version']. Ingo and Turba both
have config files (backends.php, sources.php) that default to 3 and
the driver code checks to see what version is specified in the
respective config file. So I'm not sure what else you need for this.
And then my question is if no one is using LDAP version 2 anymore,
should it go beyond just stating that its deprectated but actually
remove it as an option? Although there's probably someone out there
chugging along with an ancient directory server that it would break
things for...
State ⇒ Feedback
apps where we set the protocol version. Please upload a patch for all
of them (in one file).
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Default for LDAP version should be 3
Queue ⇒ Horde Base
State ⇒ New
Index: conf.xml
===================================================================
RCS file: /repository/horde/config/conf.xml,v
retrieving revision 1.120
diff -u -r1.120 conf.xml
--- conf.xml 14 Nov 2005 00:21:40 -0000 1.120
+++ conf.xml 19 Nov 2005 22:54:02 -0000
@@ -232,7 +232,7 @@
<configstring name="basedn" desc="The base DN for the LDAP server"/>
<configstring name="binddn" required="false" desc="The DN used
to bind to the LDAP server"/>
<configstring name="password" required="false" desc="The
password used to bind to the LDAP server"/>
- <configenum name="version" desc="LDAP Protocol Version">2
+ <configenum name="version" desc="LDAP Protocol Version">3
<values>
<value desc="LDAPv2 (Deprecated)">2</value>
<value desc="LDAPv3">3</value>
@@ -710,7 +710,7 @@
<configsection name="params">
<configstring name="hostspec" desc="The hostname of the LDAP
server">localhost</configstring>
<configinteger name="port" desc="The port of the LDAP
server">389</configinteger>
- <configenum name="version" desc="LDAP Protocol Version">2
+ <configenum name="version" desc="LDAP Protocol Version">3
<values>
<value desc="LDAPv2 (Deprecated)">2</value>
<value desc="LDAPv3">3</value>