Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
infrastructure
Commits
ccbda8d9
Verified
Commit
ccbda8d9
authored
Oct 21, 2021
by
Jan Alexander Steffens (heftig)
Browse files
matrix: Update bridge to 0.32.0
parent
74ea6401
Pipeline
#12422
passed with stage
in 35 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
roles/matrix/tasks/main.yml
View file @
ccbda8d9
...
...
@@ -147,7 +147,7 @@
git
:
repo
:
https://github.com/matrix-org/matrix-appservice-irc
dest
:
/var/lib/synapse/matrix-appservice-irc
version
:
0.3
1
.0
version
:
0.3
2
.0
become
:
true
become_user
:
synapse
become_method
:
sudo
...
...
roles/matrix/templates/irc-bridge.yaml.j2
View file @
ccbda8d9
...
...
@@ -514,9 +514,20 @@ ircService:
# allotted time period, the provisioning request will fail.
# Default: 300 seconds (5 mins)
requestTimeoutSeconds: 300
# A file defining the provisioning rules for rooms. Format is documented
# in rules.sample.yaml. Leave undefined to not specify any rules.
ruleFile: "./provisioning.rules.yaml"
# When provisioning a room, disallow rooms that match these critera
rules:
# The bridge checks the joined members of a propective room and checks to see
# if any users matching these regex sets are in the room. `exempt` users never
# match, and will be ignored. If any user matches `conflict`, the room will not
# be allowed to be bridged until the user is removed. Both sets take a regular expression.
userIds:
exempt:
# These users never conflict, even if matching
- "@doubleagent:badguys.com"
conflict:
# These users will deny a room from being bridged.
- "@.*:badguys.com"
# Watch the file for changes, and apply the rules. Default: false
enableReload: true
# Number of channels allowed to be bridged
...
...
@@ -549,6 +560,15 @@ ircService:
# how much time needs to pass between the reply and the original message to switch to the long format
shortReplyTresholdSeconds: 300
# Maximum number of montly active users, beyond which the bridge gets blocked (both ways)
# RMAUlimit: 100
# userActivity:
# The "grace period" before we start counting users as active
# minUserActiveDays: 1
# Time before users are considered inactive again
# inactiveAfterDays: 30
ircHandler:
# Should we attempt to match an IRC side mention (nickaname match)
# with the nickname's owner's matrixId, if we are bridging them?
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment