From 012df8cafaa1ead844d37350e18c7e5bed389504 Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Fri, 21 Jun 2024 12:51:27 -0600 Subject: [PATCH 1/4] Add default values for rc_invites per_issuer to docs --- docs/usage/configuration/config_documentation.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 22c545359d..22daf869f7 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -1759,8 +1759,9 @@ rc_3pid_validation: ### `rc_invites` This option sets ratelimiting how often invites can be sent in a room or to a -specific user. `per_room` defaults to `per_second: 0.3`, `burst_count: 10` and -`per_user` defaults to `per_second: 0.003`, `burst_count: 5`. +specific user. `per_room` defaults to `per_second: 0.3`, `burst_count: 10`, +`per_user` defaults to `per_second: 0.003`, `burst_count: 5` and `per_issuer` +defaults to `per_second: 0.3`, `burst_count: 10`. Client requests that invite user(s) when [creating a room](https://spec.matrix.org/v1.2/client-server-api/#post_matrixclientv3createroom) From d23582310586eda9115cd44dae0ae739d60643a0 Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Fri, 21 Jun 2024 12:54:09 -0600 Subject: [PATCH 2/4] Add changelog entry --- changelog.d/17347.doc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/17347.doc diff --git a/changelog.d/17347.doc b/changelog.d/17347.doc new file mode 100644 index 0000000000..c17b17775b --- /dev/null +++ b/changelog.d/17347.doc @@ -0,0 +1 @@ +Add default values for rc_invites per_issuer to docs. From af402b0fea1ff865b339824a2333302640a52e9a Mon Sep 17 00:00:00 2001 From: devonh Date: Mon, 24 Jun 2024 17:02:21 +0000 Subject: [PATCH 3/4] Update docs/usage/configuration/config_documentation.md Co-authored-by: Kim Brose <2803622+HarHarLinks@users.noreply.github.com> --- docs/usage/configuration/config_documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 22daf869f7..b3db078703 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -1760,7 +1760,7 @@ rc_3pid_validation: This option sets ratelimiting how often invites can be sent in a room or to a specific user. `per_room` defaults to `per_second: 0.3`, `burst_count: 10`, -`per_user` defaults to `per_second: 0.003`, `burst_count: 5` and `per_issuer` +`per_user` defaults to `per_second: 0.003`, `burst_count: 5`, and `per_issuer` defaults to `per_second: 0.3`, `burst_count: 10`. Client requests that invite user(s) when [creating a From 53b83c1c74c60a457af8166786860ba27af5478e Mon Sep 17 00:00:00 2001 From: devonh Date: Mon, 24 Jun 2024 17:02:30 +0000 Subject: [PATCH 4/4] Update changelog.d/17347.doc Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> --- changelog.d/17347.doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.d/17347.doc b/changelog.d/17347.doc index c17b17775b..6cd41be60f 100644 --- a/changelog.d/17347.doc +++ b/changelog.d/17347.doc @@ -1 +1 @@ -Add default values for rc_invites per_issuer to docs. +Add default values for `rc_invites.per_issuer` to docs.