mjolnir/README.md

68 lines
1.5 KiB
Markdown
Raw Normal View History

2019-09-26 01:36:12 +00:00
# mjolnir
2019-09-26 02:13:20 +00:00
A moderation tool for Matrix.
## Features
TODO: Describe what all this means.
Phase 1:
2019-09-28 01:54:13 +00:00
* [x] Ban users
* [x] ACL servers
* [x] Update lists with new bans/ACLs
2019-09-26 02:13:20 +00:00
Phase 2:
* [x] Pantalaimon support
2019-10-03 04:24:11 +00:00
* [ ] No-op mode (for verifying behaviour)
2019-09-28 02:05:01 +00:00
* [ ] Redact messages on ban (optionally)
* [x] More useful spam in management room
* [ ] Command to import ACLs, etc from rooms
* [x] Vet rooms on startup option
2019-09-28 02:10:03 +00:00
* [ ] Command to actually unban users (instead of leaving them stuck)
2019-09-28 02:05:01 +00:00
Phase 3:
* [ ] Synapse antispam module
2019-10-05 03:02:37 +00:00
* [ ] Room upgrade handling (both protected+list rooms)
2019-09-28 02:05:01 +00:00
* [ ] Support community-defined scopes? (ie: no hardcoded config)
* [ ] Riot hooks (independent of mjolnir?)
2019-09-26 02:13:20 +00:00
## Docker (preferred)
Mjolnir does not yet have its own image published.
```bash
git clone https://github.com/matrix-org/mjolnir.git
cd mjolnir
docker build -t mjolnir .
# Copy and edit the config. It is not recommended to change the data path.
mkdir -p /etc/mjolnir
cp config/default.yaml /etc/mjolnir/production.yaml
nano /etc/mjolnir/production.yaml
docker run --rm -it -v /etc/mjolnir:/data mjolnir
```
## Build it
This bot requires `yarn` and Node 10.
```bash
git clone https://github.com/matrix-org/mjolnir.git
cd mjolnir
yarn install
yarn build
# Copy and edit the config. It *is* recommended to change the data path.
cp config/default.yaml config/development.yaml
nano config/development.yaml
node lib/index.js
```
## Development
TODO. It's a TypeScript project with a linter.