Add config option to prefix messages (IRC->MM) with nick
If username overriding isn't enabled on the Mattermost server, this is required for Mattermost users to see who sent a message from IRC.
This commit is contained in:
parent
a64deb1238
commit
5ec94fdb43
|
@ -56,6 +56,8 @@ SkipTLSVerify=true
|
|||
nick="matterbot"
|
||||
channel="#matterbridge"
|
||||
UseSlackCircumfix=false
|
||||
#whether to prefix messages from IRC to mattermost with the sender's nick. Useful if username overrides for incoming webhooks isn't enabled on the mattermost server
|
||||
PrefixMessagesWithNick=false
|
||||
|
||||
[mattermost]
|
||||
#url is your incoming webhook url (account settings - integrations - incoming webhooks)
|
||||
|
|
|
@ -16,6 +16,7 @@ type Config struct {
|
|||
Password string
|
||||
Channel string
|
||||
UseSlackCircumfix bool
|
||||
PrefixMessagesWithNick bool
|
||||
}
|
||||
Mattermost struct {
|
||||
URL string
|
||||
|
|
|
@ -6,6 +6,7 @@ SkipTLSVerify=true
|
|||
nick="matterbot"
|
||||
channel="#matterbridge"
|
||||
UseSlackCircumfix=false
|
||||
PrefixMessagesWithNick=false
|
||||
|
||||
[mattermost]
|
||||
url="http://yourdomain/hooks/yourhookkey"
|
||||
|
|
|
@ -92,8 +92,12 @@ func (b *Bridge) SendType(nick string, message string, channel string, mtype str
|
|||
matterMessage := matterhook.OMessage{IconURL: b.Config.Mattermost.IconURL}
|
||||
matterMessage.Channel = channel
|
||||
matterMessage.UserName = nick
|
||||
matterMessage.Text = message
|
||||
matterMessage.Type = mtype
|
||||
if (b.Config.IRC.PrefixMessagesWithNick) {
|
||||
matterMessage.Text = nick + ": " + message
|
||||
} else {
|
||||
matterMessage.Text = message
|
||||
}
|
||||
err := b.m.Send(matterMessage)
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
|
|
Loading…
Reference in New Issue