fix(setup): Include MailHog setup instructions

With the changes to passwordless account creation, contributors are
unable to create an account locally. MailHog spins up a local SMPT
server that can catch all outgoing emails, allowing contributors to
successfully create accounts and see any other emails generated locally.

Closes #15838
This commit is contained in:
Nick Ferraro
2017-10-02 12:33:21 -07:00
parent 509613f5d7
commit 136171c4d1
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
module.exports = {
mail: {
connector: 'mail',
transport: {
type: 'smtp',
host: 'localhost',
secure: false,
port: 1025,
tls: {
rejectUnauthorized: false
}
},
auth: {
user: 'test',
pass: 'test'
}
}
};