From e1430270b47300a60cbab25adf2d764ba987519d Mon Sep 17 00:00:00 2001 From: Edith Parzefall Date: Fri, 29 Apr 2022 14:08:40 +0200 Subject: [PATCH] Language review on new IDM section (#3634) --- docs/extensions/idm/_index.md | 4 ++-- docs/extensions/idm/configuration_hints.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/extensions/idm/_index.md b/docs/extensions/idm/_index.md index 9f926ade2b..0a21994c82 100644 --- a/docs/extensions/idm/_index.md +++ b/docs/extensions/idm/_index.md @@ -22,8 +22,8 @@ of the LDAP tree is `o=libregraph-idm`. IDM gives LDAP write permissions to a si [boltdb](https://github.com/etcd-io/bbolt) file `idm/ocis.boltdb` inside the oCIS base data directory. Note: IDM is limited in its functionality. It only supports a subset of the LDAP operations (namely BIND, SEARCH, ADD, MODIFY, DELETE). -Also IDM currently does not do any Schema Verification (e.g. structural vs. auxiliary Objectclasses, require and option Attributes, -Syntax Checks, ...). So it's not meant as a general purpose LDAP server. +Also IDM currently does not do any schema verification (e.g. structural vs. auxiliary object classes, require and option attributes, +syntax checks, ...). So it's not meant as a general purpose LDAP server. ## Table of Contents diff --git a/docs/extensions/idm/configuration_hints.md b/docs/extensions/idm/configuration_hints.md index 67c61efced..ced032337c 100644 --- a/docs/extensions/idm/configuration_hints.md +++ b/docs/extensions/idm/configuration_hints.md @@ -22,7 +22,7 @@ in a separate subtree. The base DN of that subtree is: `ou=sysusers,o=libregraph-idm`. The service users are: * `uid=libregraph,ou=sysusers,o=libregraph-idm`: This is the only user with write - access to the LDAP tree. It is used by the Graph service to lookup, create, delete and + access to the LDAP tree. It is used by the Graph service to look up, create, delete and modify users and groups. * `uid=idp,ou=sysusers,o=libregraph-idm`: This user is used by the IDP service to perform user lookups for authentication. @@ -40,8 +40,8 @@ command line clients. To e.g. list all users, this command can be used: ldapsearch -x -H ldaps://127.0.0.1:9235 -x -D uid=libregraph,ou=sysusers,o=libregraph-idm -w idm -b o=libregraph-idm objectclass=inetorgperson ``` -When using the default configuration with the self-signed server certificate -you might need to switch off the Certificate Validation using `LDAPTL_REQCERT` env +When using the default configuration with the self-signed server certificate, +you might need to switch off the certificate validation using the `LDAPTL_REQCERT` env variable: ```