Projects
Kolab:16:Testing
kolab-autoconf
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 8
View file
kolab-autoconf-1.3.4.tar.gz/lib/Autodiscover.php
Changed
@@ -156,7 +156,7 @@ if ($value = $this->conf->get('autodiscover', $type)) { $params = explode(';', $value); - $pass_secure = in_array($params1, array('CRAM-MD5', 'DIGEST-MD5')); + $pass_secure = in_array($params1 ?? null, array('CRAM-MD5', 'DIGEST-MD5')); $host = $params0; $host = str_replace('%d', $this->config'domain', $host); @@ -165,8 +165,8 @@ $this->config$type = array( 'hostname' => $url'host', 'port' => $url'port', - 'socketType' => $proto_map$url'scheme' ?: 'plain', - 'username' => $this->config'login' ?: $this->config'email', + 'socketType' => ($proto_map$url'scheme' ?? false) ?: 'plain', + 'username' => ($this->config'login' ?? false) ?: $this->config'email', 'authentication' => 'password-' . ($pass_secure ? 'encrypted' : 'cleartext'), ); }
View file
kolab-autoconf-1.3.4.tar.gz/lib/AutodiscoverMicrosoft.php
Changed
@@ -159,11 +159,11 @@ $dispname = $xml->createElement('DisplayName'); $dispname = $user->appendChild($dispname); - $dispname->appendChild($xml->createTextNode($this->config'username')); + $dispname->appendChild($xml->createTextNode($this->config'username' ?? null)); $email = $xml->createElement('EMailAddress'); $email = $user->appendChild($email); - $email->appendChild($xml->createTextNode($this->config'login' ?: $this->config'email')); + $email->appendChild($xml->createTextNode(($this->config'login' ?? false) ?: $this->config'email')); $element = $xml->createElement('Type'); $element = $server->appendChild($element); @@ -212,11 +212,11 @@ $dispname = $xml->createElement('DisplayName'); $dispname = $user->appendChild($dispname); - $dispname->appendChild($xml->createTextNode($this->config'username')); + $dispname->appendChild($xml->createTextNode($this->config'username' ?? null)); $email = $xml->createElement('AutoDiscoverSMTPAddress'); $email = $user->appendChild($email); - $email->appendChild($xml->createTextNode($this->config'login' ?: $this->config'email')); + $email->appendChild($xml->createTextNode(($this->config'login' ?? false) ?: $this->config'email')); // @TODO: Microsoft supports also DAV protocol here foreach (array('imap', 'pop3', 'smtp') as $type) {
View file
kolab-autoconf-1.3.4.tar.gz/lib/Conf.php
Changed
@@ -139,16 +139,18 @@ // Fall back to whatever is the equivalent of auth_mechanism as the // section (i.e. 'ldap', or 'sql') - $auth_mech = $this->_conf'kolab''auth_mechanism'; - if (isset($this->_conf$auth_mech)) { - if (isset($this->_conf$auth_mech$key1)) { - return $this->_conf$auth_mech$key1; + if (isset($this->_conf'kolab')) { + $auth_mech = $this->_conf'kolab''auth_mechanism' ?? null; + if ($auth_mech && isset($this->_conf$auth_mech)) { + if (isset($this->_conf$auth_mech$key1)) { + return $this->_conf$auth_mech$key1; + } } - } - // Fall back to global settings in the 'kolab' section. - if (isset($this->_conf'kolab'$key1)) { - return $this->_conf'kolab'$key1; + // Fall back to global settings in the 'kolab' section. + if (isset($this->_conf'kolab'$key1)) { + return $this->_conf'kolab'$key1; + } } return null;
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.