Compare commits

...

4 Commits

3 changed files with 70 additions and 29 deletions

View File

@ -55,8 +55,10 @@ RunCommands=["MODE T4 -iw+gQR"]
[matrix.matrixexample]
Server="https://matrix.example.org"
Login="username"
Password="password"
MxID="@yournick.matterbridge:example.org"
# Above the clear cache & reload button. DON'T LOG OUT or it will be invalid.
# If leaked, login and remove the session from "Infosec & Privacy"
Token="MEOW-MEOW_CHOCO-CHOW"
# Otherwise collision risk with UseUserName=true
NoHomeServerSuffix=false
# The Matrix logo "[m]" easens hitting up Discord maximum length so it's

View File

@ -16,6 +16,7 @@
"feature_dehydration": "enable",
"feature_dnd": "enable",
"feature_new_layout_switcher": "enable",
"feature_spaces_metaspaces": "enable",
"feature_thread": "enable",
"feature_hidden_read_receipts": "labs",
"feature_custom_themes": "labs",

View File

@ -12,6 +12,8 @@ The main point I do this for is users `users`
"@mikaela:liberta.casa": 100,
"@mikaela.suomalainen:matrix.org": 100,
"@mikaela:tchncs.de": 100,
"@aminda:tedomum.net": 100,
"@mikaela.matterbridge:tedomum.net": 100,
"@mikaela.matterbridge:converser.eu": 100,
"@mikaela-matterbridge:feneas.org": 100,
"@leon:the-apothecary.club": 100
@ -19,36 +21,72 @@ The main point I do this for is users `users`
},
```
but here is `events` just in case. Please don't copy-paste directly, that may
break things:
## Completeish event
This has the rest event in two forms, but doesn't duplicate the above.
### Reasonable version
This is not the Element/Synapse default as that would be pointless to list.
```json
{
"type": "m.room.power_levels",
"content": {
"invite": 100,
"events": {
"m.room.avatar": 100,
"im.vector.modular.widgets": 100,
"m.room.history_visibility": 100,
"m.room.name": 100,
"m.room.encryption": 100,
"m.room.tombstone": 100,
"m.room.canonical_alias": 100,
"m.room.power_levels": 49,
"m.room.topic": 100,
"m.room.retention": 100
},
"redact": 50,
"ban": 50,
"kick": 50,
"users_default": 0,
"events_default": 0,
"state_default": 50
},
"ban": 50,
"events": {
"im.vector.modular.widgets": 50,
"m.room.avatar": 50,
"m.room.canonical_alias": 50,
"m.room.encryption": 100,
"m.room.history_visibility": 99,
"m.room.name": 50,
"m.room.power_levels": 99,
"m.room.retention": 100,
"m.room.server_acl": 100,
"m.room.tombstone": 100,
"m.room.topic": 50,
"m.space.child": 50
},
"events_default": 0,
"historical": 100,
"invite": 0,
"kick": 50,
"redact": 50,
"state_default": 50,
"users": {
READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT!
},
"users_default": 0
}
```
* If `m.room.power_levels` event is 49, moderators (PL50) are able to raise
other users to moderators while sharing equal power they won't be able to
demote.
### Paranoid version
```json
{
"ban": 50,
"events": {
"im.vector.modular.widgets": 100,
"m.room.avatar": 100,
"m.room.canonical_alias": 100,
"m.room.encryption": 100,
"m.room.history_visibility": 100,
"m.room.name": 100,
"m.room.power_levels": 100,
"m.room.retention": 100,
"m.room.server_acl": 100,
"m.room.tombstone": 100,
"m.room.topic": 100,
"m.space.child": 100
},
"events_default": 0,
"historical": 100,
"invite": 100,
"kick": 50,
"redact": 50,
"state_default": 100,
"users": {
READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT!
},
"users_default": 0
}
```