summaryrefslogtreecommitdiffstats
path: root/bridge/config
diff options
context:
space:
mode:
authorchotaire <chotaire@chotaire.net>2019-04-18 23:56:05 +0200
committerWim <wim@42.be>2019-04-18 23:56:05 +0200
commit6b47e295836254b8de8da384db5263fc3ef14362 (patch)
tree5ab4646f533411519bd66a795e2531ebd75549fd /bridge/config
parent380c38674c19d741b344c627a2db7f8f34d223d3 (diff)
downloadmatterbridge-msglm-6b47e295836254b8de8da384db5263fc3ef14362.tar.gz
matterbridge-msglm-6b47e295836254b8de8da384db5263fc3ef14362.tar.bz2
matterbridge-msglm-6b47e295836254b8de8da384db5263fc3ef14362.zip
Add verbose IRC joins/parts (ident@host) (#805)
New configuration setting: VerboseJoinPart (default is false)
Diffstat (limited to 'bridge/config')
-rw-r--r--bridge/config/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/bridge/config/config.go b/bridge/config/config.go
index 29261d58..1af6f407 100644
--- a/bridge/config/config.go
+++ b/bridge/config/config.go
@@ -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
}