summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2015-02-22 14:23:15 +0100
committerFlorian Pritz <bluewind@xinu.at>2015-02-22 14:23:15 +0100
commited6077c460039ae1ca279c7a9d6d334caf1c2314 (patch)
tree8a188fc997c0f38d3c086608e42926381b46b46b
parent2c14f82b85c15a5120776579dff43584ecc429a7 (diff)
Add comment for actions_max_age in config
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--application/config/config.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/application/config/config.php b/application/config/config.php
index a8cf51610..195839c4c 100644
--- a/application/config/config.php
+++ b/application/config/config.php
@@ -383,6 +383,9 @@ $config['upload_max_text_size'] = 2*1024*1024; // 2MiB
// Files older than this will be deleted by the cron job or when accessed.
// 0 disables deletion.
$config['upload_max_age'] = 60*60*24*5; // 5 days
+
+// Action keys (invitions, password resets) will be deleted after this time by
+// the cron job.
$config['actions_max_age'] = 60*60*24*5; // 5 days
// Files smaller than this won't be deleted (even if they are old enough)