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:37]
natrius [Table]
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
  
-^ Name             ^ Link                                                ^ Description                                                                                                                            ^ Last Release  ^ Last Commit  ^ Rating  ^ Active +Moved to [[digital:server:matrixprojects|Matrix projects]]
-| ocrcc-chatbox    | https://github.com/Safe-Support-Chat/ocrcc-chatbox  | Embeddable Matrix Chatbox                                                                                                              |                            |         | Yes     | +
-| Cactus Comments  | https://cactus.chat/                                | Cactus Comments is a federated comment system for the web, based on the Matrix protocol.                                                                          |         | ?       | +
-| Journal          | https://github.com/lukebarnard1/journal             | A web client for writing news stories, personal blogs and more, built on the Matrix protocol.                                          |                            |         | No      | +
-| Matrix CRDT      | https://github.com/YousefED/Matrix-CRDT             | Matrix-CRDT enables you to use Matrix as a backend for distributed, real-time collaborative web applications that sync automatically.  |                            |         | Yes     | +
-| mycete           | https://github.com/qbit/mycete                      | A matrix.org micro-blogging (twitter,mastodon) connector.                                                                              |                            |                 | +
-| mjolnir          | https://github.com/matrix-org/mjolnir               A moderation tool for Matrix.                                                                                                          |                            |         | Yes     | +
-| Matrix-Art       | https://github.com/MTRNord/matrix-art               | Matrix Art is an experimental Devianart Fediverse version which tries to be close to Devianart.                                        |                            |                 | +
-| Circles          | https://www.kombuchaprivacy.com/circles/            | A secure social sharing app with a Matrix backend.                                                                                                                |                 | +
-| Gatho            | https://gatho.party/                                | A event with integration to matrix.                                                                                                    |                            |                 | +
-|                  |                                                                                                                                                                                            |                            |                 |+
  
 ## Synpase maintenance tools ## Synpase maintenance tools
Line 54: 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
 +