From a8b95ad2c780fb51fd76244c0c08a751e1579b14 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 16 Jun 2021 16:46:14 +0200 Subject: Avoid making pings while fowarding names Before, the nick format looked like that: < SIC > a-long-nickname-because-it-was-free@L| Hello But when a-long-nickname-because-it-was-free talked in one channel, it still pinged a-long-nickname-because-it-was-free on the other #replicant channels. Now it looks like that and has been tested with irssi not to trigger pings: < SIC> H|a-long-nickname-because-it-was-free| Hello Signed-off-by: Denis 'GNUtoo' Carikli --- matterbridge.toml.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matterbridge.toml.example b/matterbridge.toml.example index c0c4f0c..4e2e8a0 100644 --- a/matterbridge.toml.example +++ b/matterbridge.toml.example @@ -8,7 +8,7 @@ UseSASL=true SkipTLSVerify=false Label="H" - RemoteNickFormat="{NICK}@{LABEL}| " + RemoteNickFormat="{LABEL}|{NICK}| " [irc.liberachat] Nick="SIC" @@ -19,7 +19,7 @@ UseSASL=true SkipTLSVerify=false Label="L" - RemoteNickFormat="{NICK}@{LABEL}| " + RemoteNickFormat="{LABEL}|{NICK}| " [irc.OFTC] Nick="SIC" @@ -29,7 +29,7 @@ UseTLS=true SkipTLSVerify=false Label="O" - RemoteNickFormat="{NICK}@{LABEL}| " + RemoteNickFormat="{LABEL}|{NICK}| " [[gateway]] name="mygateway" -- cgit v1.2.3