diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-06-16 16:46:14 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-06-16 17:02:11 +0200 |
commit | a8b95ad2c780fb51fd76244c0c08a751e1579b14 (patch) | |
tree | bde1c97d35f089ff693d605fee0cf98ce888fb02 | |
parent | cf2bde1e2905a8f7e8919ebc246fcc5491f660d2 (diff) | |
download | matterbridge-a8b95ad2c780fb51fd76244c0c08a751e1579b14.tar.gz matterbridge-a8b95ad2c780fb51fd76244c0c08a751e1579b14.tar.bz2 matterbridge-a8b95ad2c780fb51fd76244c0c08a751e1579b14.zip |
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 <GNUtoo@cyberdimension.org>
-rw-r--r-- | matterbridge.toml.example | 6 |
1 files 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" |