summaryrefslogtreecommitdiff
path: root/FAQ.md
diff options
context:
space:
mode:
authorfox <[email protected]>2021-02-11 21:02:05 +0300
committerfox <[email protected]>2021-02-11 21:02:05 +0300
commitac7278a4b228b7618c37b3a577773cc31849a41e (patch)
tree51d31561784387b340d02b740d3322ed5da0c5e1 /FAQ.md
parentee970e747bec363f9e327f42e9c0cc3a09c5a000 (diff)
Update 'FAQ'
Diffstat (limited to 'FAQ.md')
-rw-r--r--FAQ.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/FAQ.md b/FAQ.md
index f92b6f6..8b93668 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -115,7 +115,15 @@ See this thread/post for instructions: <https://srv.tt-rss.org/oldforum/viewtopi
#### Feeds stop updating for users who rarely login
-This is controlled by `DAEMON_UPDATE_LOGIN_LIMIT` tunable in `config.php`. Note that this also effectively disables purging of articles stored for inactive users.
+This is controlled by `DAEMON_UPDATE_LOGIN_LIMIT` tunable, declared in [functions.php](https://git.tt-rss.org/fox/tt-rss/src/branch/master/include/functions.php#L61).
+
+You can override (or disable) it through `config.php` (or a `config.d` snippet if using [Compose setup](https://git.tt-rss.org/fox/ttrss-docker-compose)):
+
+```php
+define('DAEMON_UPDATE_LOGIN_LIMIT', 0);
+```
+
+Note that this also effectively disables purging of articles stored for inactive users.
#### I have questions about article purging / I don't think purging works.