summaryrefslogtreecommitdiffstats
path: root/config.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2015-10-25 01:00:19 +0200
committerWim <wim@42.be>2015-10-25 01:00:19 +0200
commit8b6a00d1c58ee505fa1f5515d561eb909cb8063a (patch)
tree989fd9184a815f8d3581b77f889d0deb73420e3b /config.go
parent43738dbc89c888967181309002dc46b2c64990a0 (diff)
downloadmatterbridge-msglm-8b6a00d1c58ee505fa1f5515d561eb909cb8063a.tar.gz
matterbridge-msglm-8b6a00d1c58ee505fa1f5515d561eb909cb8063a.tar.bz2
matterbridge-msglm-8b6a00d1c58ee505fa1f5515d561eb909cb8063a.zip
Add SkipTLSVerify option for mattermost, allows selfsigned certificates
Diffstat (limited to 'config.go')
-rw-r--r--config.go11
1 files changed, 6 insertions, 5 deletions
diff --git a/config.go b/config.go
index efd6eaf8..e40b0e9a 100644
--- a/config.go
+++ b/config.go
@@ -16,11 +16,12 @@ type Config struct {
Channel string
}
Mattermost struct {
- URL string
- Port int
- ShowJoinPart bool
- Token string
- IconURL string
+ URL string
+ Port int
+ ShowJoinPart bool
+ Token string
+ IconURL string
+ SkipTLSVerify bool
}
}