├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── documentation.md ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── bookshelf ├── golang.png ├── gomuks.png ├── index.html ├── maubot.png ├── meowlnir.jpg └── python.png ├── bridges ├── SUMMARY.md ├── additional.css ├── additional.js ├── book.toml ├── bridge-selector.js ├── general │ ├── backfill.md │ ├── contributing.md │ ├── docker-setup.md │ ├── double-puppeting.md │ ├── end-to-bridge-encryption.md │ ├── initial-config.md │ ├── registering-appservices.md │ ├── relay-mode.md │ ├── troubleshooting.md │ └── using-bridges.md ├── go │ ├── bluesky │ │ ├── authentication.md │ │ └── index.md │ ├── discord │ │ ├── authentication.md │ │ ├── bridging-rooms.md │ │ ├── direct-media.md │ │ ├── index.md │ │ └── relay.md │ ├── gmessages │ │ ├── authentication.md │ │ ├── index.md │ │ ├── menu.svg │ │ └── messages.svg │ ├── gvoice │ │ ├── authentication.md │ │ └── index.md │ ├── imessage │ │ ├── android │ │ │ └── setup.md │ │ ├── index.md │ │ ├── ios │ │ │ ├── setup.md │ │ │ └── sms-forwarding.md │ │ ├── mac-nosip │ │ │ └── setup.md │ │ └── mac │ │ │ └── setup.md │ ├── irc │ │ ├── authentication.md │ │ └── index.md │ ├── linkedin │ │ ├── authentication.md │ │ └── index.md │ ├── meta │ │ ├── authentication.md │ │ ├── chrome-instagram-devtools.png │ │ ├── facebook-migration.md │ │ ├── firefox-instagram-devtools.png │ │ └── index.md │ ├── setup.md │ ├── signal │ │ ├── authentication.md │ │ └── index.md │ ├── slack │ │ ├── authentication.md │ │ └── index.md │ ├── twitter │ │ ├── authentication.md │ │ └── index.md │ ├── whatsapp │ │ ├── android-vm-setup.md │ │ ├── authentication.md │ │ ├── index.md │ │ ├── menu.svg │ │ └── settings.svg │ └── zulip │ │ ├── authentication.md │ │ └── index.md ├── index.md ├── mss-schema.json ├── python │ ├── googlechat │ │ ├── authentication.md │ │ └── index.md │ ├── manhole.md │ ├── optional-dependencies.md │ ├── setup.md │ └── telegram │ │ ├── authentication.md │ │ ├── creating-and-managing-chats.md │ │ ├── dbms-migration.md │ │ ├── index.md │ │ ├── management-commands.md │ │ ├── migrating-from-telematrix.md │ │ ├── provisioning-api.md │ │ └── relay-bot.md └── selector.html ├── gomuks ├── SUMMARY.md ├── book.toml ├── commands.md ├── debugging.md ├── faq.md ├── index.md ├── installation.md ├── keybindings.md └── shortcuts.md ├── maubot ├── SUMMARY.md ├── book.toml ├── dev │ ├── configuration.md │ ├── database │ │ ├── api-reference.md │ │ └── index.md │ ├── getting-started.md │ ├── handlers │ │ ├── commands │ │ │ ├── arguments.md │ │ │ ├── index.md │ │ │ ├── passive.md │ │ │ └── subcommands.md │ │ ├── events.md │ │ ├── index.md │ │ └── web.md │ ├── python-tips.md │ └── reference │ │ ├── index.md │ │ ├── message-event.md │ │ ├── plugin-fields-lifecycle.md │ │ └── plugin-metadata.md ├── index.md ├── management-api.md └── usage │ ├── basic.md │ ├── cli │ ├── auth.md │ ├── build.md │ ├── index.md │ └── login.md │ ├── encryption.md │ ├── setup │ ├── docker.md │ ├── index.md │ └── reverse-proxy.md │ └── standalone.md ├── meowlnir ├── SUMMARY.md ├── book.toml ├── bot-config.md ├── bot-create.md ├── config.md ├── index.md ├── invite-blocking.md ├── report-interception.md ├── reverse-proxy.md ├── setup-docker.md └── setup-manual.md ├── python ├── README.md └── index.html ├── robots.txt └── theme ├── bridges ├── index.hbs ├── toc.html.hbs └── toc.js.hbs ├── gomuks ├── index.hbs ├── toc.html.hbs └── toc.js.hbs ├── maubot ├── index.hbs ├── toc.html.hbs └── toc.js.hbs ├── meowlnir ├── index.hbs ├── toc.html.hbs └── toc.js.hbs ├── toc.html.hbs └── toc.js.hbs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/README.md -------------------------------------------------------------------------------- /bookshelf/golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bookshelf/golang.png -------------------------------------------------------------------------------- /bookshelf/gomuks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bookshelf/gomuks.png -------------------------------------------------------------------------------- /bookshelf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bookshelf/index.html -------------------------------------------------------------------------------- /bookshelf/maubot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bookshelf/maubot.png -------------------------------------------------------------------------------- /bookshelf/meowlnir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bookshelf/meowlnir.jpg -------------------------------------------------------------------------------- /bookshelf/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bookshelf/python.png -------------------------------------------------------------------------------- /bridges/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/SUMMARY.md -------------------------------------------------------------------------------- /bridges/additional.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/additional.css -------------------------------------------------------------------------------- /bridges/additional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/additional.js -------------------------------------------------------------------------------- /bridges/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/book.toml -------------------------------------------------------------------------------- /bridges/bridge-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/bridge-selector.js -------------------------------------------------------------------------------- /bridges/general/backfill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/backfill.md -------------------------------------------------------------------------------- /bridges/general/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/contributing.md -------------------------------------------------------------------------------- /bridges/general/docker-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/docker-setup.md -------------------------------------------------------------------------------- /bridges/general/double-puppeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/double-puppeting.md -------------------------------------------------------------------------------- /bridges/general/end-to-bridge-encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/end-to-bridge-encryption.md -------------------------------------------------------------------------------- /bridges/general/initial-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/initial-config.md -------------------------------------------------------------------------------- /bridges/general/registering-appservices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/registering-appservices.md -------------------------------------------------------------------------------- /bridges/general/relay-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/relay-mode.md -------------------------------------------------------------------------------- /bridges/general/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/troubleshooting.md -------------------------------------------------------------------------------- /bridges/general/using-bridges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/general/using-bridges.md -------------------------------------------------------------------------------- /bridges/go/bluesky/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/bluesky/authentication.md -------------------------------------------------------------------------------- /bridges/go/bluesky/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/bluesky/index.md -------------------------------------------------------------------------------- /bridges/go/discord/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/discord/authentication.md -------------------------------------------------------------------------------- /bridges/go/discord/bridging-rooms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/discord/bridging-rooms.md -------------------------------------------------------------------------------- /bridges/go/discord/direct-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/discord/direct-media.md -------------------------------------------------------------------------------- /bridges/go/discord/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/discord/index.md -------------------------------------------------------------------------------- /bridges/go/discord/relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/discord/relay.md -------------------------------------------------------------------------------- /bridges/go/gmessages/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/gmessages/authentication.md -------------------------------------------------------------------------------- /bridges/go/gmessages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/gmessages/index.md -------------------------------------------------------------------------------- /bridges/go/gmessages/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/gmessages/menu.svg -------------------------------------------------------------------------------- /bridges/go/gmessages/messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/gmessages/messages.svg -------------------------------------------------------------------------------- /bridges/go/gvoice/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/gvoice/authentication.md -------------------------------------------------------------------------------- /bridges/go/gvoice/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/gvoice/index.md -------------------------------------------------------------------------------- /bridges/go/imessage/android/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/imessage/android/setup.md -------------------------------------------------------------------------------- /bridges/go/imessage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/imessage/index.md -------------------------------------------------------------------------------- /bridges/go/imessage/ios/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/imessage/ios/setup.md -------------------------------------------------------------------------------- /bridges/go/imessage/ios/sms-forwarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/imessage/ios/sms-forwarding.md -------------------------------------------------------------------------------- /bridges/go/imessage/mac-nosip/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/imessage/mac-nosip/setup.md -------------------------------------------------------------------------------- /bridges/go/imessage/mac/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/imessage/mac/setup.md -------------------------------------------------------------------------------- /bridges/go/irc/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/irc/authentication.md -------------------------------------------------------------------------------- /bridges/go/irc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/irc/index.md -------------------------------------------------------------------------------- /bridges/go/linkedin/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/linkedin/authentication.md -------------------------------------------------------------------------------- /bridges/go/linkedin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/linkedin/index.md -------------------------------------------------------------------------------- /bridges/go/meta/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/meta/authentication.md -------------------------------------------------------------------------------- /bridges/go/meta/chrome-instagram-devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/meta/chrome-instagram-devtools.png -------------------------------------------------------------------------------- /bridges/go/meta/facebook-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/meta/facebook-migration.md -------------------------------------------------------------------------------- /bridges/go/meta/firefox-instagram-devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/meta/firefox-instagram-devtools.png -------------------------------------------------------------------------------- /bridges/go/meta/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/meta/index.md -------------------------------------------------------------------------------- /bridges/go/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/setup.md -------------------------------------------------------------------------------- /bridges/go/signal/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/signal/authentication.md -------------------------------------------------------------------------------- /bridges/go/signal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/signal/index.md -------------------------------------------------------------------------------- /bridges/go/slack/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/slack/authentication.md -------------------------------------------------------------------------------- /bridges/go/slack/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/slack/index.md -------------------------------------------------------------------------------- /bridges/go/twitter/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/twitter/authentication.md -------------------------------------------------------------------------------- /bridges/go/twitter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/twitter/index.md -------------------------------------------------------------------------------- /bridges/go/whatsapp/android-vm-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/whatsapp/android-vm-setup.md -------------------------------------------------------------------------------- /bridges/go/whatsapp/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/whatsapp/authentication.md -------------------------------------------------------------------------------- /bridges/go/whatsapp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/whatsapp/index.md -------------------------------------------------------------------------------- /bridges/go/whatsapp/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/whatsapp/menu.svg -------------------------------------------------------------------------------- /bridges/go/whatsapp/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/whatsapp/settings.svg -------------------------------------------------------------------------------- /bridges/go/zulip/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/zulip/authentication.md -------------------------------------------------------------------------------- /bridges/go/zulip/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/go/zulip/index.md -------------------------------------------------------------------------------- /bridges/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/index.md -------------------------------------------------------------------------------- /bridges/mss-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/mss-schema.json -------------------------------------------------------------------------------- /bridges/python/googlechat/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/googlechat/authentication.md -------------------------------------------------------------------------------- /bridges/python/googlechat/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/googlechat/index.md -------------------------------------------------------------------------------- /bridges/python/manhole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/manhole.md -------------------------------------------------------------------------------- /bridges/python/optional-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/optional-dependencies.md -------------------------------------------------------------------------------- /bridges/python/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/setup.md -------------------------------------------------------------------------------- /bridges/python/telegram/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/authentication.md -------------------------------------------------------------------------------- /bridges/python/telegram/creating-and-managing-chats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/creating-and-managing-chats.md -------------------------------------------------------------------------------- /bridges/python/telegram/dbms-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/dbms-migration.md -------------------------------------------------------------------------------- /bridges/python/telegram/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/index.md -------------------------------------------------------------------------------- /bridges/python/telegram/management-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/management-commands.md -------------------------------------------------------------------------------- /bridges/python/telegram/migrating-from-telematrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/migrating-from-telematrix.md -------------------------------------------------------------------------------- /bridges/python/telegram/provisioning-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/provisioning-api.md -------------------------------------------------------------------------------- /bridges/python/telegram/relay-bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/python/telegram/relay-bot.md -------------------------------------------------------------------------------- /bridges/selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/bridges/selector.html -------------------------------------------------------------------------------- /gomuks/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/SUMMARY.md -------------------------------------------------------------------------------- /gomuks/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/book.toml -------------------------------------------------------------------------------- /gomuks/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/commands.md -------------------------------------------------------------------------------- /gomuks/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/debugging.md -------------------------------------------------------------------------------- /gomuks/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/faq.md -------------------------------------------------------------------------------- /gomuks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/index.md -------------------------------------------------------------------------------- /gomuks/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/installation.md -------------------------------------------------------------------------------- /gomuks/keybindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/keybindings.md -------------------------------------------------------------------------------- /gomuks/shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/gomuks/shortcuts.md -------------------------------------------------------------------------------- /maubot/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/SUMMARY.md -------------------------------------------------------------------------------- /maubot/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/book.toml -------------------------------------------------------------------------------- /maubot/dev/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/configuration.md -------------------------------------------------------------------------------- /maubot/dev/database/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/database/api-reference.md -------------------------------------------------------------------------------- /maubot/dev/database/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/database/index.md -------------------------------------------------------------------------------- /maubot/dev/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/getting-started.md -------------------------------------------------------------------------------- /maubot/dev/handlers/commands/arguments.md: -------------------------------------------------------------------------------- 1 | # Command arguments 2 | -------------------------------------------------------------------------------- /maubot/dev/handlers/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/handlers/commands/index.md -------------------------------------------------------------------------------- /maubot/dev/handlers/commands/passive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/handlers/commands/passive.md -------------------------------------------------------------------------------- /maubot/dev/handlers/commands/subcommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/handlers/commands/subcommands.md -------------------------------------------------------------------------------- /maubot/dev/handlers/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/handlers/events.md -------------------------------------------------------------------------------- /maubot/dev/handlers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/handlers/index.md -------------------------------------------------------------------------------- /maubot/dev/handlers/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/handlers/web.md -------------------------------------------------------------------------------- /maubot/dev/python-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/python-tips.md -------------------------------------------------------------------------------- /maubot/dev/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/reference/index.md -------------------------------------------------------------------------------- /maubot/dev/reference/message-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/reference/message-event.md -------------------------------------------------------------------------------- /maubot/dev/reference/plugin-fields-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/reference/plugin-fields-lifecycle.md -------------------------------------------------------------------------------- /maubot/dev/reference/plugin-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/dev/reference/plugin-metadata.md -------------------------------------------------------------------------------- /maubot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/index.md -------------------------------------------------------------------------------- /maubot/management-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/management-api.md -------------------------------------------------------------------------------- /maubot/usage/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/basic.md -------------------------------------------------------------------------------- /maubot/usage/cli/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/cli/auth.md -------------------------------------------------------------------------------- /maubot/usage/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/cli/build.md -------------------------------------------------------------------------------- /maubot/usage/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/cli/index.md -------------------------------------------------------------------------------- /maubot/usage/cli/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/cli/login.md -------------------------------------------------------------------------------- /maubot/usage/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/encryption.md -------------------------------------------------------------------------------- /maubot/usage/setup/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/setup/docker.md -------------------------------------------------------------------------------- /maubot/usage/setup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/setup/index.md -------------------------------------------------------------------------------- /maubot/usage/setup/reverse-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/setup/reverse-proxy.md -------------------------------------------------------------------------------- /maubot/usage/standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/maubot/usage/standalone.md -------------------------------------------------------------------------------- /meowlnir/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/SUMMARY.md -------------------------------------------------------------------------------- /meowlnir/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/book.toml -------------------------------------------------------------------------------- /meowlnir/bot-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/bot-config.md -------------------------------------------------------------------------------- /meowlnir/bot-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/bot-create.md -------------------------------------------------------------------------------- /meowlnir/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/config.md -------------------------------------------------------------------------------- /meowlnir/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/index.md -------------------------------------------------------------------------------- /meowlnir/invite-blocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/invite-blocking.md -------------------------------------------------------------------------------- /meowlnir/report-interception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/report-interception.md -------------------------------------------------------------------------------- /meowlnir/reverse-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/reverse-proxy.md -------------------------------------------------------------------------------- /meowlnir/setup-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/setup-docker.md -------------------------------------------------------------------------------- /meowlnir/setup-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/meowlnir/setup-manual.md -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/python/README.md -------------------------------------------------------------------------------- /python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/python/index.html -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/robots.txt -------------------------------------------------------------------------------- /theme/bridges/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/theme/bridges/index.hbs -------------------------------------------------------------------------------- /theme/bridges/toc.html.hbs: -------------------------------------------------------------------------------- 1 | ../toc.html.hbs -------------------------------------------------------------------------------- /theme/bridges/toc.js.hbs: -------------------------------------------------------------------------------- 1 | ../toc.js.hbs -------------------------------------------------------------------------------- /theme/gomuks/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/theme/gomuks/index.hbs -------------------------------------------------------------------------------- /theme/gomuks/toc.html.hbs: -------------------------------------------------------------------------------- 1 | ../toc.html.hbs -------------------------------------------------------------------------------- /theme/gomuks/toc.js.hbs: -------------------------------------------------------------------------------- 1 | ../toc.js.hbs -------------------------------------------------------------------------------- /theme/maubot/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/theme/maubot/index.hbs -------------------------------------------------------------------------------- /theme/maubot/toc.html.hbs: -------------------------------------------------------------------------------- 1 | ../toc.html.hbs -------------------------------------------------------------------------------- /theme/maubot/toc.js.hbs: -------------------------------------------------------------------------------- 1 | ../toc.js.hbs -------------------------------------------------------------------------------- /theme/meowlnir/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/theme/meowlnir/index.hbs -------------------------------------------------------------------------------- /theme/meowlnir/toc.html.hbs: -------------------------------------------------------------------------------- 1 | ../toc.html.hbs -------------------------------------------------------------------------------- /theme/meowlnir/toc.js.hbs: -------------------------------------------------------------------------------- 1 | ../toc.js.hbs -------------------------------------------------------------------------------- /theme/toc.html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/theme/toc.html.hbs -------------------------------------------------------------------------------- /theme/toc.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mautrix/docs/HEAD/theme/toc.js.hbs --------------------------------------------------------------------------------