Extension:LDAPUserInfo

This extension is part of the LDAP Stack and requires the LDAPProvider extension to be installed first.
Category:LDAP Stack Member

This extension updates user information in the local wiki with the data retrieved from an LDAP resource.

Category:Extensions with invalid or missing typeCategory:GPL licensed extensions
MediaWiki extensions manual
LDAPUserInfo
Release status: stableCategory:Stable extensions
Description Used to query user information using LDAP
Author(s) Cindy Cicalese, Mark A. Hershberger, Robert Vogel
Latest version 1.0.0
Compatibility policy Snapshots releases along with MediaWiki. Master is not backward compatible.Category:Extensions with release branches compatibility policy
MediaWiki 1.31+Category:Extensions with manual MediaWiki version
License GNU General Public License 2.0 or later
Download Category:Extensions in Wikimedia version control
  • $wgModifierRegistry
Quarterly downloads 173 (Ranked 24th)
Translate the LDAPUserInfo extension if it is available at translatewiki.net
Issues Open tasks · Report a bug
Category:All extensions

Domain config settings

Name Default Description
userinfo.attributes-map
{
	"email": "mail",
	"realname": "cn",
	"properties.gender": "gender"
}

Note that Extension:LDAPProvider itself has the very similar settings realnameattribute and emailattribute, possibly leading to confusion and misconfiguration (see e.g. this topic). The relation between these similar attributes is …… (TODO could somebody please explain?)

Example

$LDAPProviderDomainConfigProvider = function() {
	$config = [
		'company.local' => [
			'connection' => [
				"server" => "ldap.company.local",
				
				"searchattribute" => "uid",
				"usernameattribute" => "uid",
				"realnameattribute" => "fullname",
				"emailattribute" => "mail",
			],
			
			'userinfo' => [
				'attributes-map' => [
					'email' => 'mail',
					'realname' => 'fullname'
				]
			]
		]
	];
    

Versioning

LDAP Stack Extensions are targeted/qualified for MediaWiki LTS releases only.
However, this table helps to determine which extension-releases to use across all recent versions.

MediaWiki Release Recommended Extension Version Test Status Latest Test Date
1.35 (LTS) LDAPxxx_master Tested March 2020
Category:LDAP extensions
Category:All extensions Category:Extensions in Wikimedia version control Category:Extensions included in BlueSpice Category:Extensions with invalid or missing type Category:Extensions with manual MediaWiki version Category:Extensions with release branches compatibility policy Category:GPL licensed extensions Category:LDAP Stack Member Category:LDAP extensions Category:Stable extensions Category:UserLoadAfterLoadFromSession extensions