docs: add baseline ldap documentation

within the new account backends nav section.
This commit is contained in:
Martin Weinelt
2026-03-12 14:58:17 +01:00
parent 63365fb1a8
commit a70ae543cb
4 changed files with 113 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
{
mailserver = {
ldap = {
enable = true;
uris = [
"ldaps://ldap1.example.com"
"ldaps://ldap2.example.com"
];
bind = {
dn = "cn=mail,dc=example=dc=com";
passwordFile = "/run/keys/ldap-bind-pw";
};
base = "ou=users,dc=example,dc=com";
scope = "one";
};
};
}