diff options
author | Erik Johnston <erik@matrix.org> | 2019-09-09 15:29:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-09 15:29:39 +0100 |
commit | 470dc621ae7e1f3013e78118cb18000873014f65 (patch) | |
tree | f6b8c849b25755143aba9bf8a1b3bc565e71c013 /synapse/config | |
parent | Add a build info metric to Prometheus (#6005) (diff) | |
parent | Fix comments (diff) | |
download | synapse-470dc621ae7e1f3013e78118cb18000873014f65.tar.xz |
Merge pull request #5934 from matrix-org/erikj/censor_redactions
Censor redactions in DB after a month
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/server.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/synapse/config/server.py b/synapse/config/server.py index 2abdef0971..c8b9fe2d0f 100644 --- a/synapse/config/server.py +++ b/synapse/config/server.py @@ -162,6 +162,16 @@ class ServerConfig(Config): self.mau_trial_days = config.get("mau_trial_days", 0) + # How long to keep redacted events in the database in unredacted form + # before redacting them. + redaction_retention_period = config.get("redaction_retention_period", "7d") + if redaction_retention_period is not None: + self.redaction_retention_period = self.parse_duration( + redaction_retention_period + ) + else: + self.redaction_retention_period = None + # Options to disable HS self.hs_disabled = config.get("hs_disabled", False) self.hs_disabled_message = config.get("hs_disabled_message", "") @@ -718,6 +728,13 @@ class ServerConfig(Config): # Defaults to 'true'. # #allow_per_room_profiles: false + + # How long to keep redacted events in unredacted form in the database. After + # this period redacted events get replaced with their redacted form in the DB. + # + # Defaults to `7d`. Set to `null` to disable. + # + redaction_retention_period: 7d """ % locals() ) |