TLS option for self service

This commit is contained in:
Roland Gruber 2011-08-20 16:27:07 +00:00
parent d6482b6e05
commit 42cb28822e
1 changed files with 4 additions and 0 deletions

View File

@ -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 = "";