diff options
author | Wim <wim@42.be> | 2016-11-20 17:01:53 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2016-11-20 17:01:53 +0100 |
commit | 2e4b7fac1146c186f28599d62379d7e9912fda81 (patch) | |
tree | 9930dd9d68cee5e7b8153d3e3345539f21fe1fbe /matterbridge.toml.sample | |
parent | 2867ec459a9234a8b0152ae5baad01fc18af843b (diff) | |
download | matterbridge-msglm-2e4b7fac1146c186f28599d62379d7e9912fda81.tar.gz matterbridge-msglm-2e4b7fac1146c186f28599d62379d7e9912fda81.tar.bz2 matterbridge-msglm-2e4b7fac1146c186f28599d62379d7e9912fda81.zip |
Update documentation and sample (telegram)
Diffstat (limited to 'matterbridge.toml.sample')
-rw-r--r-- | matterbridge.toml.sample | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index 831e99f2..2e5f8186 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -343,6 +343,36 @@ RemoteNickFormat="[{PROTOCOL}] <{NICK}> " ShowJoinPart=false ################################################################### +#telegram section +################################################################### +[telegram] + +#You can configure multiple servers "[telegram.name]" or "[telegram.name2]" +#In this example we use [telegram.secure] +#REQUIRED +[telegram.secure] +#Token to connect with telegram API +#REQUIRED +Token="Yourtokenhere" + +#Nicks you want to ignore. +#Messages from those users will not be sent to other bridges. +#OPTIONAL +IgnoreNicks="spammer1 spammer2" + +#RemoteNickFormat defines how remote users appear on this bridge +#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username. +#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge +#The string "{PROTOCOL}" (case sensitive) will be replaced by the protocol used by the bridge +#OPTIONAL (default empty) +RemoteNickFormat="[{PROTOCOL}] <{NICK}> " + +#Enable to show users joins/parts from other bridges (only from irc-bridge at the moment) +#OPTIONAL (default false) +ShowJoinPart=false + + +################################################################### #Gateway configuration ################################################################### @@ -381,6 +411,7 @@ enable=true #discord - channel (without the #) # - ID:123456789 (where 123456789 is the channel ID) # (https://github.com/42wim/matterbridge/issues/57) + #telegram - chatid (a large negative number, eg -123456789) #REQUIRED channel="#testing" |