From 69646a160d8597944c307334901f0acfd32582c5 Mon Sep 17 00:00:00 2001 From: Duco van Amstel Date: Sun, 7 Oct 2018 14:22:15 +0100 Subject: Add Gateway's name to RemoteNickFormat (#501) In order to support extra use cases we should add the `{GATEWAY}` tag to the `RemoteNickFormat` string which would be replaced by the value of the `name=` field from a gateway's configuration. This is _very_ useful when you are forwarding, for example, multiple channels from one chat to a single channel on another one (one-way). It will help you identify the source channel of a message on the target chat. --- gateway/gateway.go | 1 + 1 file changed, 1 insertion(+) (limited to 'gateway') diff --git a/gateway/gateway.go b/gateway/gateway.go index 6529393f..a33a9a97 100644 --- a/gateway/gateway.go +++ b/gateway/gateway.go @@ -374,6 +374,7 @@ func (gw *Gateway) modifyUsername(msg config.Message, dest *bridge.Bridge) strin nick = strings.Replace(nick, "{BRIDGE}", br.Name, -1) nick = strings.Replace(nick, "{PROTOCOL}", br.Protocol, -1) + nick = strings.Replace(nick, "{GATEWAY}", gw.Name, -1) nick = strings.Replace(nick, "{LABEL}", br.GetString("Label"), -1) nick = strings.Replace(nick, "{NICK}", msg.Username, -1) return nick -- cgit v1.2.3