diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-12-04 14:20:29 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-12-04 16:11:40 +0100 |
commit | 6b7fdda4f5b11c1ec92cd66270c2aa37f7324432 (patch) | |
tree | 8f317faa92625ccb0551b3fe83d6b58e921430da /config | |
parent | 8fdbb988995099fc2bd79ca5704120873952651b (diff) | |
download | nextcloud-server-6b7fdda4f5b11c1ec92cd66270c2aa37f7324432.tar.gz nextcloud-server-6b7fdda4f5b11c1ec92cd66270c2aa37f7324432.zip |
config switch to disable auto expire for the trash bin
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 7b533a8b9ce..ba068968323 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -117,6 +117,9 @@ $CONFIG = array( /* How long should ownCloud keep deleted files in the trash bin, default value: 30 days */ 'trashbin_retention_obligation' => 30, +/* Disable/Enable auto expire for the trash bin, by default auto expire is enabled */ +'trashbin_auto_expire' => true, + /* allow user to change his display name, if it is supported by the back-end */ 'allow_user_to_change_display_name' => true, @@ -185,8 +188,8 @@ $CONFIG = array( // "datadirectory" => "", /* Enable maintenance mode to disable ownCloud - If you want to prevent users to login to ownCloud before you start doing some maintenance work, - you need to set the value of the maintenance parameter to true. + If you want to prevent users to login to ownCloud before you start doing some maintenance work, + you need to set the value of the maintenance parameter to true. Please keep in mind that users who are already logged-in are kicked out of ownCloud instantly. */ "maintenance" => false, |