conversation
Matrix
→ Install your own server
→ Reset a user password
this can be done in the database
→ Connect to IRC libera channel
To connect to #channel
just join #channel:libera.chat
→ Use the admin api
One has to be admin update users set admin=1 where name = '....';
→ Ban a user
curl -X POST -H "Authorization: Bearer <MY_TOKEN>" -H "Content-Type: application/json" -d '{"erase": false}' "https://<matrix-server>/_synapse/admin/v1/deactivate/@<user>:<matrix-server>"
→ Upgrade a room
This will make the current room read-only, and create a new room see rfc.
Simply type this as a message (you will be asked to invite every participant) :
/upgraderoom 7
Run an api request :
curl -H 'Authorization: Bearer <token-access>' -H "Content-Type: application/json" -X POST https://matrix.interhop.org/_matrix/client/r0/rooms/<room-id-url-encoded>/upgrade -d '{"new_version": "6"}'
- token-access: In element > All settings > Help about > Access Token (bottom page)
- room-id: In element > Room Info
→ resources
→ SSO
- User can create account from SSO providers
- it supports openid connect through keycloak
- ansible docker openid support
- also there is likely something about proxy for openid
→ performances
- Sync v3
- ansible docker installé docs
- implem
- conduit rust
- Ansible docker conduit
- ansible docker dendrite
- ansible docker workers
- ansible docker workers doc
I guess keeping synapse using workers and sync v3 is a better choice than using beta homeservers with leas features and commiters.
→ creating a bot
This page was last modified: