Compare commits

..

No commits in common. "ffb6e9e452a7c141cf67b2b387c720d55ebae15f" and "ec05945a0e4aee317ed43a51739ffbc88d74f075" have entirely different histories.

3 changed files with 29 additions and 70 deletions

View File

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

View File

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

View File

@ -12,8 +12,6 @@ The main point I do this for is users `users`
"@mikaela:liberta.casa": 100, "@mikaela:liberta.casa": 100,
"@mikaela.suomalainen:matrix.org": 100, "@mikaela.suomalainen:matrix.org": 100,
"@mikaela:tchncs.de": 100, "@mikaela:tchncs.de": 100,
"@aminda:tedomum.net": 100,
"@mikaela.matterbridge:tedomum.net": 100,
"@mikaela.matterbridge:converser.eu": 100, "@mikaela.matterbridge:converser.eu": 100,
"@mikaela-matterbridge:feneas.org": 100, "@mikaela-matterbridge:feneas.org": 100,
"@leon:the-apothecary.club": 100 "@leon:the-apothecary.club": 100
@ -21,72 +19,36 @@ The main point I do this for is users `users`
}, },
``` ```
## Completeish event but here is `events` just in case. Please don't copy-paste directly, that may
break things:
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 ```json
{ {
"ban": 50, "type": "m.room.power_levels",
"events": { "content": {
"im.vector.modular.widgets": 50, "invite": 100,
"m.room.avatar": 50, "events": {
"m.room.canonical_alias": 50, "m.room.avatar": 100,
"m.room.encryption": 100, "im.vector.modular.widgets": 100,
"m.room.history_visibility": 99, "m.room.history_visibility": 100,
"m.room.name": 50, "m.room.name": 100,
"m.room.power_levels": 99, "m.room.encryption": 100,
"m.room.retention": 100, "m.room.tombstone": 100,
"m.room.server_acl": 100, "m.room.canonical_alias": 100,
"m.room.tombstone": 100, "m.room.power_levels": 49,
"m.room.topic": 50, "m.room.topic": 100,
"m.space.child": 50 "m.room.retention": 100
}, },
"events_default": 0, "redact": 50,
"historical": 100, "ban": 50,
"invite": 0, "kick": 50,
"kick": 50, "users_default": 0,
"redact": 50, "events_default": 0,
"state_default": 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
} }
``` ```
### Paranoid version * 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
```json demote.
{
"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
}
```