summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2020-01-07 15:14:33 +0000
committerBrendan Abolivier <babolivier@matrix.org>2020-01-07 15:14:33 +0000
commit7ba98a2874c6c14c3f2ceb9b633a13d3e7345065 (patch)
treea607739dbf70ca1d59cc798cc37c0329afe554af
parentMerge branch 'develop' into babolivier/retention_doc (diff)
downloadsynapse-7ba98a2874c6c14c3f2ceb9b633a13d3e7345065.tar.xz
Incorporate review
-rw-r--r--docs/message_retention_policies.md55
1 files changed, 28 insertions, 27 deletions
diff --git a/docs/message_retention_policies.md b/docs/message_retention_policies.md
index 84f0925230..42b637516f 100644
--- a/docs/message_retention_policies.md
+++ b/docs/message_retention_policies.md
@@ -6,6 +6,9 @@ follow the semantics described in
 [MSC1763](https://github.com/matrix-org/matrix-doc/blob/matthew/msc1763/proposals/1763-configurable-retention-periods.md),
 and allow server and room admins to configure how long messages should
 be kept in a homeserver's database before being purged from it.
+**Please note that, as this feature isn't part of the Matrix
+specification yet, this implementation is to be considered as
+experimental.** 
 
 A message retention policy is mainly defined by its `max_lifetime`
 parameter, which defines how long a message can be kept around after
@@ -40,30 +43,6 @@ process and store that event until it's picked up by the next purge job,
 though it will always hide it from clients.
 
 
-## Room configuration
-
-To configure a room's message retention policy, a room's admin or
-moderator needs to send a state event in that room with the type
-`m.room.retention` and the following content:
-
-```json
-{
-    "max_lifetime": ...
-}
-```
-
-In this event's content, the `max_lifetime` parameter has the same
-meaning as previously described, and needs to be expressed in
-milliseconds. The event's content can also include a `min_lifetime`
-parameter, which has the same meaning and limited support as previously
-described.
-
-Note that over every server in the room, only the ones with support for
-message retention policies will actually remove expired events. While
-we plan to eventually enable this support by default in Synapse, this
-isn't currently the case.
-
-
 ## Server configuration
 
 Support for this feature can be enabled and configured in the
@@ -103,9 +82,8 @@ Purge jobs are the jobs that Synapse runs in the background to purge
 expired events from the database. They are only run if support for
 message retention policies is enabled in the server's configuration. If
 no configuration for purge jobs is configured by the server admin,
-Synapse will run one daily that will handle every room with a message
-retention policy (or, if the server has a default policy configured,
-every room it knows), which should be enough in most cases.
+Synapse will use a default configuration, which is described in the
+[sample configuration file](https://github.com/matrix-org/synapse/blob/v1.7.3/docs/sample_config.yaml#L332-L393).
 
 Some server admins might want a finer control on when events are removed
 depending on an event's room's policy. This can be done by setting the
@@ -177,6 +155,29 @@ Like other settings in this section, these parameters can be expressed
 either as a duration or as a number of milliseconds.
 
 
+## Room configuration
+
+To configure a room's message retention policy, a room's admin or
+moderator needs to send a state event in that room with the type
+`m.room.retention` and the following content:
+
+```json
+{
+    "max_lifetime": ...
+}
+```
+
+In this event's content, the `max_lifetime` parameter has the same
+meaning as previously described, and needs to be expressed in
+milliseconds. The event's content can also include a `min_lifetime`
+parameter, which has the same meaning and limited support as previously
+described.
+
+Note that over every server in the room, only the ones with support for
+message retention policies will actually remove expired events. This
+support is currently not enabled by default in Synapse.
+
+
 ## Note on reclaiming disk space
 
 While purge jobs actually delete data from the database, the disk space