about summary refs log tree commit diff
path: root/MatrixContentFilter/appsettings.Development.json
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-03-12 19:52:15 +0100
committerRory& <root@rory.gay>2025-03-12 19:52:15 +0100
commitbdf058ab5c936463a022f62ffbb55bb71c26e856 (patch)
tree69914accad80f10dd8d87e3738e820c58f042537 /MatrixContentFilter/appsettings.Development.json
parentInitial commit (diff)
downloadMatrixContentFilter-master.tar.xz
More work HEAD master
Diffstat (limited to '')
-rw-r--r--MatrixContentFilter/appsettings.Development.json18
1 files changed, 17 insertions, 1 deletions
diff --git a/MatrixContentFilter/appsettings.Development.json b/MatrixContentFilter/appsettings.Development.json

index 29f9c88..b01a410 100644 --- a/MatrixContentFilter/appsettings.Development.json +++ b/MatrixContentFilter/appsettings.Development.json
@@ -15,10 +15,26 @@ "Prefix": "?" }, "MatrixContentFilter": { + // App mode: bot or appservice + "AppMode": "bot", + // whether to use LiFo or FiFo for task queuing + "AsyncQueueImplementation": "lifo", // List of people who should be invited to the control room "Admins": [ "@emma:conduit.rory.gay", "@emma:rory.gay" - ] + ], + // The maximum number of redactions that can be performed concurrently + "ConcurrencyLimits": { + "Redactions": 2, + "LogMessages": 2 + }, + // Whether bot mode should be ammended with a cronjob to check for missed events + // Keep in mind this may add a lot of load to the server + "SanityCheck": { + "Enabled": false, + "MaxConcurrency": 1, + "Interval": "00:05:00" + } } }