diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-01-09 10:47:02 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-01-09 10:47:02 +0100 |
commit | a5099b01f93ec81602c8facba04233c7bc65ed47 (patch) | |
tree | fb2ac4d03d0210848c0c22a241ad956b7bf54c8d /config | |
parent | b4606ec24f507ff6ad6f720d3c4f026221a163d7 (diff) | |
parent | c1a79d24c54d3c1d6ecb2c65540f9b52a3d6dc31 (diff) | |
download | nextcloud-server-a5099b01f93ec81602c8facba04233c7bc65ed47.tar.gz nextcloud-server-a5099b01f93ec81602c8facba04233c7bc65ed47.zip |
Merge pull request #12984 from owncloud/ldap-user-cleanup-master
Ldap user cleanup master
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 91428bdc3e4..d0d735ed537 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -80,7 +80,7 @@ $CONFIG = array( /** * Where user files are stored; this defaults to ``data/`` in the ownCloud - * directory. The SQLite database is also stored here, when you use SQLite. (SQLite is + * directory. The SQLite database is also stored here, when you use SQLite. (SQLite is * available only in ownCloud Community Edition) */ 'datadirectory' => '/var/www/owncloud/data', @@ -665,6 +665,20 @@ $CONFIG = array( 'OC\Preview\MarkDown' ), +/** + * LDAP + * + * Global settings used by LDAP User and Group Backend + */ + +/** + * defines the interval in minutes for the background job that checks user + * existance and marks them as ready to be cleaned up. The number is always + * minutes. Setting it to 0 disables the feature. + * See command line (occ) methods ldap:show-remnants and user:delete + */ +'ldapUserCleanupInterval' => 51, + /** * Maintenance |