lldap/example_configs/ejabberd.md

804 B

Basic LDAP auth for a Ejabberd XMPP server

Main documentation here.

For simple user auth add this to main ejabberd.yml:

host_config:
  xmpp.example.org:
    auth_method: [ldap]
    ldap_servers:
      - 127.0.0.1 #IP or hostname of LLDAP server
    ldap_port: 3890
    ldap_uids:
      - uid
    ldap_rootdn: "uid=lldap_readonly,ou=people,dc=example,dc=org"
    ldap_password: "secret"
    ldap_base: "ou=people,dc=example,dc=org"

vCard from LDAP

Theoretically possible, see the documentation.

TODO

Shared roster groups from LDAP

Theoretically possible, see the documentation.

TODO