gist/matrix/m.room.server_acl/README.md

26 lines
415 B
Markdown
Raw Normal View History

2021-09-30 21:56:11 +02:00
# m.room.server_acl
This event type controls which servers can access the room at all. Be very careful
adjusting this.
* https://matrix.org/docs/guides/moderation#banning-servers-from-rooms-server-acls
```json
{
"allow": [
"*"
],
"deny": [
"glowers.club",
"*.glowers.club",
"pleasecuminside.me",
"*.pleasecuminside.me",
"midov.pl",
"*.midov.pl",
"kiwifarms.net",
"*.kiwifarms.net"
]
}
```