Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Arch Linux
infrastructure
Commits
872de3f4
Verified
Commit
872de3f4
authored
Feb 14, 2021
by
Jan Alexander Steffens (heftig)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
matrix: Update bridge to 0.24.0
parent
a841a2c5
Pipeline
#5220
passed with stage
in 49 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
roles/matrix/tasks/main.yml
roles/matrix/tasks/main.yml
+1
-1
roles/matrix/templates/irc-bridge.yaml.j2
roles/matrix/templates/irc-bridge.yaml.j2
+22
-1
No files found.
roles/matrix/tasks/main.yml
View file @
872de3f4
...
...
@@ -148,7 +148,7 @@
git
:
repo
:
https://github.com/matrix-org/matrix-appservice-irc
dest
:
/var/lib/synapse/matrix-appservice-irc
version
:
0.2
3
.0
version
:
0.2
4
.0
become
:
true
become_user
:
synapse
become_method
:
sudo
...
...
roles/matrix/templates/irc-bridge.yaml.j2
View file @
872de3f4
...
...
@@ -32,7 +32,7 @@ homeserver:
# Default: true
enablePresence: true
# Which port should the appservice bind to.
Takes priority over
the one provided in the
# Which port should the appservice bind to.
Can be overriden by
the one provided in the
# command line! Optional.
bindPort: 8499
...
...
@@ -364,6 +364,15 @@ ircService:
# through the bridge e.g. caller ID as there is no way to /ACCEPT.
# Default: "" (no user modes)
userModes: "{{ network.user_modes }}"
# The format of the realname defined for users, either mxid or reverse-mxid
realnameFormat: "mxid"
# The minimum time to wait between connection attempts if we were disconnected
# due to throttling.
# pingTimeoutMs: 600000
# The rate at which to send pings to the IRCd if the client is being quiet for a while.
# Whilst the IRCd *should* be sending pings to us to keep the connection alive, it appears
# that sometimes they don't get around to it and end up ping timing us out.
# pingRateMs: 60000
{% endfor %}
# Set information about the bridged channel in the room state, so that client's may
...
...
@@ -495,6 +504,18 @@ ircService:
# event in order to batch together changes
# powerLevelGracePeriod: 1000
# Map of permissions from user/domain/wildcard to permission level.
# This is currently used to allow/disallow use of admin commands
# from the admin room but may be expanded in the future to contain more
# options. Currently, you may either set the value to be 'admin', or leave the key
# out to imply that the user does not have special permissions.
# UserID takes precedence over domain, which takes precedence over wildcard.
permissions:
# '*': admin
# 'matrix.org': admin
# '@fibble:matrix.org': admin
'@heftig:{{ matrix_server_name }}': admin
# Options here are generally only applicable to large-scale bridges and may have
# consequences greater than other options in this configuration file.
advanced:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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