matrix/m.room.server_acl: remove unnecessary wildcards, note it

This commit is contained in:
Aminda Suomalainen 2023-06-08 10:25:01 +03:00
parent 694275d0f2
commit 6ea5a835b2
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -13,9 +13,13 @@ adjusting this.
- https://matrix.org/docs/guides/moderation#banning-servers-from-rooms-server-acls - https://matrix.org/docs/guides/moderation#banning-servers-from-rooms-server-acls
Note: when sending the custom event via `/devtools` for the first time, click Note:
the `Event` so it says `State Event` and asks for `State key` in addition to `type`,
which can/is left empty as usual. - When sending the custom event via `/devtools` for the first time, click
the `Event` so it says `State Event` and asks for `State key` in addition to `type`,
which can/is left empty as usual.
- Subdomains appear to be implied by specifying 2nd level domain. E.g.
`matrix.org` appears to apply to `*.matrix.org` at least on Synapse.
```json ```json
{ {
@ -23,26 +27,18 @@ which can/is left empty as usual.
"allow_ip_literals": false, "allow_ip_literals": false,
"deny": [ "deny": [
"matrix.org", "matrix.org",
"*.matrix.org",
"mjolnir.matrix.org", "mjolnir.matrix.org",
"disroot.org", "disroot.org",
"privacytools.io", "privacytools.io",
"feneas.org", "feneas.org",
"glowers.club", "glowers.club",
"*.glowers.club",
"midov.pl", "midov.pl",
"*.midov.pl",
"kiwifarms.net", "kiwifarms.net",
"*.kiwifarms.net",
"liberta.casa", "liberta.casa",
"nitro.chat", "nitro.chat",
"*.nitro.chat",
"nerdsin.space", "nerdsin.space",
"*.nerdsin.space",
"thisisjoes.site", "thisisjoes.site",
"*.thisisjoes.site", "pp13.space"
"pp13.space",
"*.pp13.space"
] ]
} }
``` ```