Difference between revisions of "2.0/Modules/m ldap"

From AnopeWiki
Jump to: navigation, search
(Created page with "{{Language|2.0/Modules/m_ldap}} {{Header|m_ldap|Database|Anope}} == <div class="moduleheader">Description</div> == This module allows other modules to use LDAP. By itself, th...")
 
 
Line 4: Line 4:
 
== <div class="moduleheader">Description</div> ==
 
== <div class="moduleheader">Description</div> ==
 
This module allows other modules to use LDAP. By itself, this module does nothing useful.
 
This module allows other modules to use LDAP. By itself, this module does nothing useful.
 +
 +
*<span style="color: red;">Enabeled/Disabeled using the '''./extra''' command line configuration tool.</span>
  
 
;name= :Module name
 
;name= :Module name

Latest revision as of 21:46, 13 May 2014

Language

English

Section Database
Module m_ldap
Author Anope

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"
        }
}