# mini-dm **Repository Path**: mirrors_linagora/mini-dm ## Basic Information - **Project Name**: mini-dm - **Description**: Lite LinID directory manager - **Primary Language**: Unknown - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-18 - **Last Updated**: 2025-12-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/linagora/ldap-rest) # LDAP-Rest Lite LinID directory manager is a lightweight directory manager that provides LDAP integration through a plugin-based architecture. This system enables directory management operations with configurable authentication, extensible functionality through events/hooks, and extensible REST API. Core plugins also provide plugins that ensure LDAP data consistency. ## Key Features - **Robust Error Handling** - Server stays online even when plugins encounter errors - **Plugin Architecture** - Extensible through a powerful plugin system - **Flexible Authentication** - Support for multiple authentication methods - **REST API** - Complete LDAP operations through REST endpoints - **Event Hooks** - Intercept and customize LDAP operations - **Browser Libraries** - Ready-to-use JavaScript components ## How it works All configuration is done via command-line arguments and/or environment variables. Example: ```shell npx ldap-rest --ldap-base 'dc=example,dc=com' \ --ldap-dn 'cn=admin,dc=example,dc=com' --ldap-pwd admin \ --ldap-url ldap://localhost \ --log-level notice \ --plugin core/ldap/groups --ldap-group-base 'ou=groups,dc=example,dc=com' \ --plugin core/ldap/externalUsersInGroups ``` ### LDAP Failover Multiple LDAP servers are supported for high availability: ```shell --ldap-url ldap://ldap1.example.com,ldap://ldap2.example.com,ldap://ldap3.example.com ``` The system automatically tries each URL in order and fails over if a connection fails. ### Log Levels LDAP-Rest uses syslog-style log levels: - `error` - Only errors - `warn` - Warnings and errors - `notice` - Web access logs (recommended for production) - `info` - General info + web logs - `debug` - All debug output Use `--log-level notice` for production to see web access logs without general info messages. ## Configuration See **[Configuration Guide](./docs/usage/configuration.md)** for all CLI options and environment variables. ## Documentation Documentation is organized into 3 categories: ### [Usage](./docs/usage/README.md) Installation, configuration and plugin usage. - **[Getting Started](./docs/usage/README.md)** - Quick start guide - **[Configuration](./docs/usage/configuration.md)** - CLI options and environment variables - **[Plugins](./docs/usage/plugins/README.md)** - Plugin documentation - **[Authentication](./docs/usage/plugins/auth/README.md)** - Token, TOTP, HMAC, LemonLDAP::NG, OpenID Connect ### [Plugin Development](./docs/plugin-development/README.md) Create and extend LDAP-Rest with custom plugins. - **[Development Guide](./docs/plugin-development/README.md)** - Architecture and plugin creation - **[Hooks](./docs/plugin-development/hooks.md)** - LDAP hooks system - **[Contributing](./CONTRIBUTING.md)** - Contribution guide ### [Client Application Development](./docs/client-development/README.md) Integrate LDAP-Rest into your web applications. - **[REST API](./docs/client-development/api/rest-api.md)** - Complete API reference - **[Browser Libraries](./docs/client-development/browser/libraries.md)** - Web components - **[Examples](./docs/client-development/examples/README.md)** - React, Vue.js, Vanilla JS - **[Browser Demos](./examples/web/)** - Interactive demos (TOTP client, LDAP tree viewer) ## Copyright and license [![Powered by LINAGORA](./docs/linagora.png)](https://linagora.com) Copyright 2025-present [LINAGORA](https://linagora.com) Licensed under [GNU AGPL-3.0](./LICENSE)