-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Sulky_Whale edited this page May 22, 2026
·
1 revision
- Start your server.
- Change your database type in the config.yml to
MySQLand fill in the correct credentials to connect to your database:
database:
# Choose how to store the data. Valid types are `FlatFile` and `MySQL`.
type: MySQL
# These settings only apply if you have chosen the `MySQL` type.
host: localhost
port: 3306
database_name: itemmail
table_prefix: itemmail_
username: root
password: ''- Reload ItemMail with
/itemmail reload. - ItemMail will now be using your MySQL database with your existing data!
- Start your server.
- Change your database type in the config.yml to
FlatFile. You can safely ignore the database credentials:
database:
# Choose how to store the data. Valid types are `FlatFile` and `MySQL`.
type: FlatFile- Reload ItemMail with
/itemmail reload. - ItemMail will now be using FlatFile with your existing data!
Yes! It is set up the same way as the MySQL database.