From 6c3ec20e45addc534ed8337b9b4733df1d51ff02 Mon Sep 17 00:00:00 2001
From: Andreas Gohr <gohr@cosmocode.de>
Date: Wed, 26 Jan 2011 09:49:50 +0100
Subject: [PATCH] AD auth: password changing works via TLS as well

---
 inc/auth/ad.class.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/inc/auth/ad.class.php b/inc/auth/ad.class.php
index 7c4f69c67..93186d9a1 100644
--- a/inc/auth/ad.class.php
+++ b/inc/auth/ad.class.php
@@ -24,6 +24,7 @@
  *   $conf['auth']['ad']['ad_password']        = 'pass';
  *   $conf['auth']['ad']['real_primarygroup']  = 1;
  *   $conf['auth']['ad']['use_ssl']            = 1;
+ *   $conf['auth']['ad']['use_tls']            = 1;
  *   $conf['auth']['ad']['debug']              = 1;
  *
  *   // get additional information to the userinfo array
@@ -52,7 +53,7 @@ class auth_ad extends auth_basic {
         $this->cnf = $conf['auth']['ad'];
 
         // we can change the password if SSL is set
-        if($this->cnf['use_ssl']){
+        if($this->cnf['use_ssl'] || $this->cnf['use_tls']){
             $this->cando['modPass'] = true;
         }
         $this->cando['modName'] = true;
-- 
GitLab