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

@ -258,6 +258,9 @@ class selfServiceProfile {
/** server address */ /** server address */
public $serverURL; public $serverURL;
/** use TLS */
public $useTLS;
/** LDAP suffix */ /** LDAP suffix */
public $LDAPSuffix; public $LDAPSuffix;
@ -302,6 +305,7 @@ class selfServiceProfile {
function __construct() { function __construct() {
// set default values // set default values
$this->serverURL = "localhost"; $this->serverURL = "localhost";
$this->useTLS = false;
$this->LDAPSuffix = "dc=my-domain,dc=com"; $this->LDAPSuffix = "dc=my-domain,dc=com";
$this->LDAPUser = ""; $this->LDAPUser = "";
$this->LDAPPassword = ""; $this->LDAPPassword = "";