From 42cb28822e271998f0bf0ec7551fa88415622109 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 20 Aug 2011 16:27:07 +0000 Subject: [PATCH] TLS option for self service --- lam/lib/selfService.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lam/lib/selfService.inc b/lam/lib/selfService.inc index 89c20134..84a5a16d 100644 --- a/lam/lib/selfService.inc +++ b/lam/lib/selfService.inc @@ -257,6 +257,9 @@ class selfServiceProfile { /** server address */ public $serverURL; + + /** use TLS */ + public $useTLS; /** LDAP suffix */ public $LDAPSuffix; @@ -302,6 +305,7 @@ class selfServiceProfile { function __construct() { // set default values $this->serverURL = "localhost"; + $this->useTLS = false; $this->LDAPSuffix = "dc=my-domain,dc=com"; $this->LDAPUser = ""; $this->LDAPPassword = "";