summaryrefslogtreecommitdiffstats
path: root/config.go
diff options
context:
space:
mode:
author@42wim <wim@42.be>2016-03-18 12:50:52 +0100
committer@42wim <wim@42.be>2016-03-18 12:50:52 +0100
commit4759ee6132e1a8ec1274870b5cf20ae36d02996c (patch)
treebf9a754911ca0c3a0199448e3ebc737b535f6e7d /config.go
parenta64deb1238ac9684a8eb2e3f051e41e07b955394 (diff)
parent5ec94fdb4356df1be68a107f0ac142d44530b334 (diff)
downloadmatterbridge-msglm-4759ee6132e1a8ec1274870b5cf20ae36d02996c.tar.gz
matterbridge-msglm-4759ee6132e1a8ec1274870b5cf20ae36d02996c.tar.bz2
matterbridge-msglm-4759ee6132e1a8ec1274870b5cf20ae36d02996c.zip
Merge pull request #12 from fdevibe/msgprefix
Add config option to prefix messages (IRC->MM) with nick
Diffstat (limited to 'config.go')
-rw-r--r--config.go17
1 files changed, 9 insertions, 8 deletions
diff --git a/config.go b/config.go
index d1038880..d0bf8044 100644
--- a/config.go
+++ b/config.go
@@ -8,14 +8,15 @@ import (
type Config struct {
IRC struct {
- UseTLS bool
- SkipTLSVerify bool
- Server string
- Port int
- Nick string
- Password string
- Channel string
- UseSlackCircumfix bool
+ UseTLS bool
+ SkipTLSVerify bool
+ Server string
+ Port int
+ Nick string
+ Password string
+ Channel string
+ UseSlackCircumfix bool
+ PrefixMessagesWithNick bool
}
Mattermost struct {
URL string