diff options
author | Ferass El Hafidi <vitali64pmemail@protonmail.com> | 2024-06-11 10:42:47 +0000 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2024-06-12 15:59:08 +0200 |
commit | 718b4864af43cf9c94436eb1b2a834006c3be2f2 (patch) | |
tree | f0479d4fe7a99cf7da56ceb2360875d88d47f677 | |
parent | eae7d656ed28957336d3df72b1aa9ccf970ddfc6 (diff) | |
download | matterbridge-main.tar.gz matterbridge-main.tar.bz2 matterbridge-main.zip |
Previously, the bridge used the following format for bridging messages:
<SIC> H|f_| hello
which confused some users. This format was chosen because it prevented
clients from generating a ping. However, matterbridge now has
{NOPINGNICK} to take care of that.
With this commit, the bridge now uses the following format:
<SIC> <f_@H> hello
and uses {NOPINGNICK} instead of {NICK}, which inserts a zero-width
space inside the nickname. Also colourise nicks so that it looks nicer.
Signed-off-by: Ferass El Hafidi <vitali64pmemail@protonmail.com>
Acked-by: dllud <dllud@riseup.net>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r-- | matterbridge.toml.example | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/matterbridge.toml.example b/matterbridge.toml.example index 4e2e8a0..81c03d7 100644 --- a/matterbridge.toml.example +++ b/matterbridge.toml.example @@ -8,7 +8,8 @@ UseSASL=true SkipTLSVerify=false Label="H" - RemoteNickFormat="{LABEL}|{NICK}| " + ColorNicks=true + RemoteNickFormat="<{NOPINGNICK}@{LABEL}> " [irc.liberachat] Nick="SIC" @@ -19,7 +20,8 @@ UseSASL=true SkipTLSVerify=false Label="L" - RemoteNickFormat="{LABEL}|{NICK}| " + ColorNicks=true + RemoteNickFormat="<{NOPINGNICK}@{LABEL}> " [irc.OFTC] Nick="SIC" @@ -29,7 +31,8 @@ UseTLS=true SkipTLSVerify=false Label="O" - RemoteNickFormat="{LABEL}|{NICK}| " + ColorNicks=true + RemoteNickFormat="<{NOPINGNICK}@{LABEL}> " [[gateway]] name="mygateway" |