28 lines
951 B
TOML
28 lines
951 B
TOML
docker run -ti --mount "type=bind,source=$(pwd)/matterbridge,target=/etc/matterbridge" 42wim/matterbridge
|
|
|
|
# Or, for older docker versions:
|
|
#
|
|
# docker run -ti -v ./matterbridge:/etc/matterbridge 42wim/matterbridge
|
|
|
|
[msteams.teams]
|
|
TenantID="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
ClientID="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
TeamID="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
|
|
|
|
[matrix.mymatrix]
|
|
#Server is your homeserver (eg https://matrix.org)
|
|
Server="https://matrix.tfcconnection.org"
|
|
|
|
#login/pass of your bot.
|
|
#Use a dedicated user for this and not your own!
|
|
#Messages sent from this user will not be relayed to avoid loops.
|
|
Login="yourlogin"
|
|
Password="yourpass"
|
|
|
|
RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
|
|
|
|
#Whether to send the homeserver suffix. eg ":matrix.org" in @username:matrix.org
|
|
#to other bridges, or only send "username".(true only sends username)
|
|
#OPTIONAL (default false)
|
|
NoHomeServerSuffix=false |