From 3b3dd0cf7adbed3db932bce47d507b1293aaac05 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 27 Nov 2019 18:30:07 +0100 Subject: [PATCH] Add note about URI format of hostnames in ldap config (#7082) --- config/defaults.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/defaults.inc.php b/config/defaults.inc.php index 18d291242..eb448c6d3 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -883,6 +883,7 @@ $config['ldap_public']['Verisign'] = array( // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part) // %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %t = domain.tld + // Note: Host can also be a full URI e.g. ldaps://hostname.local:636 (for SSL) 'hosts' => array('directory.verisign.com'), 'port' => 389, 'use_tls' => false,