diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-09-25 09:17:51 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-09-25 14:32:05 +0200 |
commit | 60b87048c1f5bc51c194fe7f6b0f2075c6feb11a (patch) | |
tree | a98b518747eedfa1493a1697aef979a182f29150 /config | |
parent | e7bc2a10e3ffd16cda8d15ff06dcbc870e34a627 (diff) | |
download | nextcloud-server-60b87048c1f5bc51c194fe7f6b0f2075c6feb11a.tar.gz nextcloud-server-60b87048c1f5bc51c194fe7f6b0f2075c6feb11a.zip |
Add doc to config.sample for enforce LDAP home folder naming rule
* ref #16891
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 51529cdb0cc..e0c486d75c1 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -806,6 +806,21 @@ $CONFIG = array( */ 'ldapUserCleanupInterval' => 51, +/** + * Enforce the existence of the home folder naming rule for all users + * + * Following scenario: + * * a home folder naming rule is set in LDAP advanced settings + * * a user doesn't have the home folder naming rule attribute set + * + * If this is set to **true** (default) it will NOT fallback to the core's + * default naming rule of using the internal user ID as home folder name. + * + * If this is set to **false** it will fallback for the users without the + * attribute set to naming the home folder like the internal user ID. + * + */ +'enforce_home_folder_naming_rule' => true, /** * Maintenance |