2.0/Modules/m ldap
From AnopeWiki
Language | |
---|---|
English |
|
Description
This module allows other modules to use LDAP. By itself, this module does nothing useful.
- Enabeled/Disabeled using the ./extra command line configuration tool.
- name=
- Module name
- ldap {...}
-
- server=
- Server to connect to
- port=
- Server port to connect to
- admin_bindn=
- ldap username/credentials
- admin_password=
- Password to access ldap server
Default Configuration
/* * m_ldap [EXTRA] * * This module allows other modules to use LDAP. By itself, this module does nothing useful. */ #module { name = "m_ldap" ldap { server = "ldap://127.0.0.1" port = 389 /* * Admin credentials used for performing searches and adding users. */ admin_binddn = "cn=Manager,dc=anope,dc=org" admin_password = "secret" } }