ModMail, but in Python
token
: The bot's user token retrieved from Discord Developer Portal.application_id
: The bot's application ID retrieved from Discord Developer Portal.channel
: Modmail channel ID in guild (must beTextChannel
).prefix
: The bot prefix (needed for slash command sync command).status
: The bot status.id_prefix
: The bot prefix for persistent views (e.g.,mm
)
{
"token": "abc123",
"application_id": 1234567890,
"channel": 1234567890,
"prefix": "]",
"status": "DM to contact",
"id_prefix": "mm"
}
- Navigate to the root directory.
cd <path>/modmail.py
-
Copy the
config.example.json
, rename toconfig.json
, and replace the relevant values. If you want to inject the config at runtime using environment variables, don't replace the values. -
Build the bot using Docker.
docker image build -t modmail-py .
- Run the docker container.
docker container run --name modmail \
-v database:/database \
modmail-py
As aforementioned, you can also inject environment variables.
docker container run --name modmail \
-v database:/database \
-e MODMAIL_TOKEN=foo \
-e MODMAIL_CHANNEL=321 \
-e MODMAIL_PREFIX=! \
modmail-py
For information regarding contributing to this project, please read CONTRIBUTING.md.