2019-12-02 18:51:11 -05:00
|
|
|
# 🛠️ Setting up the bot
|
2019-12-02 19:49:37 -05:00
|
|
|
**Note:** This bot is run on your own machine or a server.
|
|
|
|
To keep it online, you need to keep the bot process running.
|
2019-12-02 18:51:11 -05:00
|
|
|
|
|
|
|
## Terminology
|
|
|
|
* **Main server** (or main guild) is the server where users will be contacting modmail from
|
|
|
|
* **Inbox server** (or inbox guild, or mail guild) is the server where modmail threads will be created.
|
|
|
|
In a "single-server setup" this is the same server as the main server.
|
|
|
|
* A **modmail thread** is a channel on the **inbox server** that contains the current exchange with the **user**.
|
|
|
|
These threads can be closed to archive them. One **user** can only have 1 modmail thread open at once.
|
|
|
|
* A **moderator**, in modmail's context, is a server staff member who responds to and manages modmail threads
|
|
|
|
* A **user**, in modmail's context, is a Discord user who is contacting modmail by DMing the bot
|
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
1. Create a bot account through the [Discord Developer Portal](https://discordapp.com/developers/)
|
|
|
|
2. Invite the created bot to your server
|
|
|
|
3. Install Node.js 10, 11, or 12
|
|
|
|
- Node.js 13 is currently not supported
|
|
|
|
4. Download the latest bot version from [the releases page](https://github.com/Dragory/modmailbot/releases) and extract it to a folder
|
2019-12-05 13:23:09 -05:00
|
|
|
5. In the bot's folder, make a copy of the file `config.example.ini` and rename the copy to `config.ini`
|
2019-12-02 18:51:11 -05:00
|
|
|
|
2019-12-05 13:34:40 -05:00
|
|
|
## Single-server setup
|
|
|
|
In this setup, modmail threads are opened on the main server in a special category.
|
|
|
|
This is the recommended setup for small and medium sized servers.
|
|
|
|
|
2020-01-27 05:22:08 -05:00
|
|
|
1. **Go through the [prerequisites](#prerequisites) above first!**
|
|
|
|
2. Open `config.ini` in a text editor and fill in the required values. `mainGuildId` and `mailGuildId` should both be set to your server's id.
|
|
|
|
3. On a new line at the end of `config.ini`, add `categoryAutomation.newThread = CATEGORY_ID_HERE`
|
2019-12-05 13:34:40 -05:00
|
|
|
- Replace `CATEGORY_ID_HERE` with the ID of the category where new modmail threads should go
|
2020-01-27 05:22:08 -05:00
|
|
|
4. Make sure the bot has `Manage Channels`, `Manage Messages`, and `Attach Files` permissions in the category
|
|
|
|
5. **[🏃 Start the bot!](starting-the-bot.md)**
|
|
|
|
6. Want to change other bot options? See **[📝 Configuration](configuration.md)**
|
|
|
|
7. Have any other questions? Check out the **[🙋 Frequently Asked Questions](faq.md)** or
|
2019-12-05 13:53:38 -05:00
|
|
|
**[join the support server!](../README.md#support-server)**
|
2019-12-05 13:34:40 -05:00
|
|
|
|
2019-12-02 18:51:11 -05:00
|
|
|
## Two-server setup
|
|
|
|
In this setup, modmail threads are opened on a separate inbox server.
|
2019-12-05 13:34:40 -05:00
|
|
|
This is the recommended setup for large servers that get a lot of modmails, where a single-server setup could get messy.
|
|
|
|
You might also want this setup for privacy concerns*.
|
|
|
|
|
2020-01-27 05:22:08 -05:00
|
|
|
1. **Go through the [prerequisites](#prerequisites) above first!**
|
|
|
|
2. Create an inbox server on Discord
|
|
|
|
3. Invite the bot to the inbox server.
|
|
|
|
4. Open `config.ini` in a text editor and fill in the values
|
|
|
|
5. Make sure the bot has the `Manage Channels`, `Manage Messages`, and `Attach Files` permissions on the **inbox** server
|
|
|
|
6. **[🏃 Start the bot!](starting-the-bot.md)**
|
|
|
|
7. Want to change other bot options? See **[📝 Configuration](configuration.md)**
|
|
|
|
8. Have any other questions? Check out the **[🙋 Frequently Asked Questions](faq.md)** or
|
2019-12-05 13:53:38 -05:00
|
|
|
**[join the support server!](../README.md#support-server)**
|
2019-12-02 19:49:37 -05:00
|
|
|
|
2019-12-05 13:34:40 -05:00
|
|
|
*\* Since all channel names, even for channels you can't see, are public information through the API, a user with a
|
|
|
|
modified client could see the names of all users contacting modmail through the modmail channel names.*
|