4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-27 08:49:24 +00:00

Add verbose IRC joins/parts (ident@host) (#805)

New configuration setting: VerboseJoinPart (default is false)
This commit is contained in:
chotaire
2019-04-18 23:56:05 +02:00
committed by Wim
parent 380c38674c
commit 6b47e29583
3 changed files with 13 additions and 2 deletions

View File

@ -120,7 +120,7 @@ type Protocol struct {
ReplaceMessages [][]string // all protocols
ReplaceNicks [][]string // all protocols
RemoteNickFormat string // all protocols
RunCommands []string // irc
RunCommands []string // IRC
Server string // IRC,mattermost,XMPP,discord
ShowJoinPart bool // all protocols
ShowTopicChange bool // slack
@ -141,6 +141,7 @@ type Protocol struct {
UseFirstName bool // telegram
UseUserName bool // discord
UseInsecureURL bool // telegram
VerboseJoinPart bool // IRC
WebhookBindAddress string // mattermost, slack
WebhookURL string // mattermost, slack
}