mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 00:31:58 +01:00
Use LDAP over StartTLS if option LDAP_USE_START_TLS is set.
This commit is contained in:
parent
9745b078f5
commit
d9771a3f7d
@ -88,6 +88,7 @@ $config['LDAP_MAIL_ATTR'] = 'mail';
|
||||
$config['LDAP_AUDITOR_MEMBER_DN'] = '';
|
||||
$config['LDAP_ADMIN_MEMBER_DN'] = '';
|
||||
$config['LDAP_BASE_DN'] = '';
|
||||
$config['LDAP_USE_START_TLS'] = 0;
|
||||
|
||||
// AD specific settings
|
||||
//
|
||||
|
@ -12,6 +12,10 @@ class LDAP {
|
||||
ldap_set_option($this->link, LDAP_OPT_PROTOCOL_VERSION, 3);
|
||||
ldap_set_option($this->link, LDAP_OPT_REFERRALS, 0);
|
||||
|
||||
if (LDAP_USE_START_TLS == 1) {
|
||||
ldap_start_tls($this->link);
|
||||
}
|
||||
|
||||
if(@ldap_bind($this->link, $binddn, $bindpw)) {
|
||||
$this->bind = 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user