From 3b4b03d6b342075098d4cdd95bb131a00deed5b8 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Sat, 05 Nov 2011 07:34:53 -0400 Subject: [PATCH] Added config property to set LDAP_OPT_REFERRALS option to an LDAP connection --- program/include/rcube_ldap.php | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index a816325..ab891e3 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -189,6 +189,9 @@ ldap_set_option($lc, LDAP_OPT_PROTOCOL_VERSION, $this->prop['ldap_version']); $this->prop['host'] = $host; $this->conn = $lc; + + if (isset($this->prop['referrals'])) + ldap_set_option($lc, LDAP_OPT_REFERRALS, $this->prop['referrals']); break; } $this->_debug("S: NOT OK"); -- Gitblit v1.9.1