meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
digital:server:matrixsynapsemisc [2022/02/28 11:07]
natrius
digital:server:matrixsynapsemisc [2022/05/18 13:08] (current)
natrius [Tombstone Event]
Line 2: Line 2:
  
 Different things, sometimes advanced and some things that just did not fit in the regular guide.  Different things, sometimes advanced and some things that just did not fit in the regular guide. 
 +
 +## Matrix tips they don't tell you
 +https://wordsmith.social/cos/matrix-tips-they-dont-tell-you
  
 ## Interesting projects ## Interesting projects
  
-### Add an support Chat on the website +Moved to [[digital:server:matrixprojects|Matrix projects]]
- +
-* https://github.com/Safe-Support-Chat/ocrcc-chatbox +
- +
-### Comment-section +
- +
-* https://cactus.chat/ +
- +
-### Create your Diary/Blog with Matrix +
- +
-* https://github.com/lukebarnard1/journal (https://matrix.org/docs/projects/client/journal) (discontinoued) +
- +
-### Collaborated writing +
- +
-* https://github.com/YousefED/Matrix-CRDT +
- +
-### Post to channel, autopost to Twitter and/or Mastodon +
- +
-* https://github.com/qbit/mycete  +
- +
-### Moderating Matrix +
- +
-* https://github.com/matrix-org/mjolnir+
  
 ## Synpase maintenance tools ## Synpase maintenance tools
Line 66: Line 47:
  
 <code>python3 pollbot.py</code> <code>python3 pollbot.py</code>
 +
 +## Exclude a server from a channel
 +
 +Info von https://matrix.org/docs/guides/moderation#banning-servers-from-rooms-server-acls bzw. direkt https://spec.matrix.org/latest/client-server-api/#server-access-control-lists-acls-for-rooms
 +
 +- Chat `/devtools`
 +- `Send Custom Event`
 +- Rechts unten roten Button `Event` drücken
 +- Event Type: `m.room.server_acl`
 +- State Key: leer lassen
 +- Event Content: 
 +
 +```
 +{
 + "allow": [
 + "*"
 + ],
 + "allow_ip_literals": false,
 + "deny": [
 + "kiwifarms.net",
 + "*.kiwifarms.net",
 + "zygoat.club",
 + "*.zygoat.club"
 + ]
 +}
 +```
 +
 +- `Send`
 +- Bestätigung im Chat `[CURRENT USER] set the server ACLs for this room.`
 +
 +## Send custom reactions to messages (Powerlevel 1)
 +
 +- Chat `/devtools`
 +- `Send Custom Event`
 +- Event Type: `m.reaction`
 +- Event Content: 
 +
 +```
 +{
 +    "m.relates_to": {
 +        "rel_type": "m.annotation",
 +        "event_id": "$164569109460761pvPSY:matrix.org",
 +        "key": "BOMP!"
 +    }
 +}
 +```
 +
 +## Send custom reactions to messages (Powerlevel >=50)
 +
 +- Chat `/devtools`
 +- `Send Custom Event`
 +- Rechts unten roten Button `Event` drücken
 +- Event Type: `m.reaction`
 +- State Key: leer lassen
 +- Event Content: 
 +
 +```
 +{
 +    "m.relates_to": {
 +        "rel_type": "m.annotation",
 +        "event_id": "$164569109460761pvPSY:matrix.org",
 +        "key": "BOMP!"
 +    }
 +}
 +```
 +
 +- `Send`
 +
 +## Tombstone Event
 +
 +https://spec.matrix.org/latest/client-server-api/#events-17
 +
 +- Chat `/devtools`
 +- `Send Custom Event`
 +- Rechts unten roten Button `Event` drücken
 +- Event Type: `m.room.tombstone`
 +- State Key: leer lassen
 +- Event Content: 
 +
 +```
 +{
 +    "body": "This room has been replaced",
 +    "replacement_room": "!ERZvriGbDxJDxaCBxX:matrix.org"
 +  }
 +```
 +
 +- `Send`
 +
 +## Inactive room blocking address
 +
 +IIRC you can request release of alias at support@matrix.org
 +