Setup

How to setup your new MailMe plugin

Installation

  1. Turn your server off

  2. Place the MailMe plugin jar into the plugins directory

  3. Start the server

Configuration

The config should be well documented but for more complex configuration, you can find tutorials in this section.

Selecting a Database

As of version 1.5, MailMe supports MySQL database. Here's how to enable MySQL otherwise you can leave this section blank.

To enable, change type to 'mysql'. If your server is running a later version of the JDBC driver, you can input this into the driver field. Then simply fill out the rest of your details.

To enable SSL, set it to true and on additional_url you can add its keys. (Should start with a '&' when adding a url)

database:
  type: "json" # json, mysql
  # Drivers
  # com.mysql.cj.jdbc.Driver
  # com.mysql.jdbc.Driver
  driver: "com.mysql.jdbc.Driver"
  database_name: "MailMe"
  host: "localhost"
  port: 3306
  username: "root"
  password: "administrator"
  useSSL: false
  additional_url: ""

Customizing the language files

We're always looking for more translations and accuracy! If you know another language than those provided - please don't hesitate providing another language file to the community!

Language files can be found in the directory ~MailMe/languages/

To edit:

Simply open the .yml and edit the values of the languages.

Adding your own language

To add your own language, simply create another .yml e.g customlang.yml and copy the contents of an existing language file inside and translate to your desired language. Note 'T' is the token that players will input e.g /mailme lang <token>

Last updated