Compare commits

..

4 Commits

7 changed files with 43 additions and 37 deletions

@ -1 +1 @@
Subproject commit e9636bd8ff6e3d627240cf9a04d8076014d3609e
Subproject commit bbf5945287455d0a399cea016e9063a0bd0e9473

@ -1 +1 @@
Subproject commit c81ad0b9cf5d58ff561bbd3c9e79bd803275ba50
Subproject commit 3ee3528a8c17c696c918336874a0a620c89e014a

View File

@ -55,10 +55,10 @@ Generic notes:
This is not the Element/Synapse default as that would be pointless to list.
```json5
```jsonnet
{
ban: 50,
events: {
"ban": 50,
"events": {
"im.vector.modular.widgets": 50,
"m.room.avatar": 50,
"m.room.canonical_alias": 13,
@ -74,16 +74,16 @@ This is not the Element/Synapse default as that would be pointless to list.
"m.room.topic": 25,
"m.space.child": 50,
},
events_default: 0,
historical: 100,
invite: 0,
kick: 25,
redact: 25,
state_default: 50,
users: {
"events_default": 0,
"historical": 100,
"invite": 0,
"kick": 25,
"redact": 25,
"state_default": 50,
"users": {
// READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT!
},
users_default: 0,
"users_default": 0,
}
```
@ -111,10 +111,10 @@ This is not the Element/Synapse default as that would be pointless to list.
### Medium version
```json5
```jsonnet
{
ban: 50,
events: {
"ban": 50,
"events": {
"im.vector.modular.widgets": 50,
"m.room.avatar": 50,
"m.room.canonical_alias": 13,
@ -130,16 +130,16 @@ This is not the Element/Synapse default as that would be pointless to list.
"m.room.topic": 25,
"m.space.child": 50,
},
events_default: 0,
historical: 100,
invite: 50,
kick: 25,
redact: 25,
state_default: 50,
users: {
"events_default": 0,
"historical": 100,
"invite": 50,
"kick": 25,
"redact": 25,
"state_default": 50,
"users": {
// READ THE BEGINNING OF THE FILE FOR THIS SECTION AND PROPER FORMAT! OR SEE YOUR CURRENT EVENT!
},
users_default: 0,
"users_default": 0,
}
```
@ -148,10 +148,10 @@ This is not the Element/Synapse default as that would be pointless to list.
### Paranoid version
```json5
```jsonnet
{
ban: 50,
events: {
"ban": 50,
"events": {
"im.vector.modular.widgets": 100,
"m.room.avatar": 100,
"m.room.canonical_alias": 100,
@ -167,15 +167,15 @@ This is not the Element/Synapse default as that would be pointless to list.
"m.room.topic": 100,
"m.space.child": 100,
},
events_default: 0,
historical: 100,
invite: 100,
kick: 50,
redact: 50,
state_default: 100,
users: {
"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,
"users_default": 0,
}
```

View File

@ -17,6 +17,9 @@ Replace X with the feed ID seen in `!rss subscriptions`:
- default: `!rss template X New post in $feed_title: [$title]($link)`
- Matrix: `!rss template X [$feed_title]($feed_link): [$title]($link) ($date) $summary`
- IRC: `!rss template X $link $feed_title: $title ($date) $summary`
- Line length is limited so if the URL is long, it's the most important thing.
- IRCish: `!rss template X $title $link $summary $date $feed_title`
- Still compatibleish with IRC, but in case the client has preview, it may be more useful now.
Note: at the time of writing `$author` is not supported?

View File

@ -46,6 +46,9 @@ This contains the whole JSON line to easen copy-pasting as my events are missing
- default: `"template": "New post in $FEEDNAME: $LINK",`
- Matrix: `"template": "$FEEDTITLE: $AUTHOR $LINK ($DATE) $SUMMARY",`
- IRC: `"template": "$URL $FEEDTITLE: $TITLE $AUTHOR ($DATE) $SUMMARY",`
- Line length is limited so if the URL is long, it's the most important thing.
- IRCish: `"template": "$TITLE $URL $SUMMARY $AUTHOR $DATE $FEEDTITLE",`
- Still compatibleish with IRC, but in case the client has preview, it may be more useful now.
## installation

@ -1 +1 @@
Subproject commit f5f88ef4d0ca0aa8b3bc29cc42031786a1db3181
Subproject commit 41835421a9f5e7a1861750e824869c3e30d5fd97

@ -1 +1 @@
Subproject commit 5d00ccaf6bccea0c5f657304d396ac159316408c
Subproject commit 7ac9b9a7ccd9c52cbcc35d04a4633daa54396f65