aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/mail.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/mail.js b/config/mail.js
index 6b18db2..50a7848 100644
--- a/config/mail.js
+++ b/config/mail.js
@@ -27,7 +27,7 @@ module.exports = {
27 pool: true, 27 pool: true,
28 port: Env.get('SMTP_PORT', 2525), 28 port: Env.get('SMTP_PORT', 2525),
29 host: Env.get('SMTP_HOST'), 29 host: Env.get('SMTP_HOST'),
30 secure: false, 30 secure: JSON.parse(Env.get("MAIL_SSL", "true")),
31 auth: { 31 auth: {
32 user: Env.get('MAIL_USERNAME'), 32 user: Env.get('MAIL_USERNAME'),
33 pass: Env.get('MAIL_PASSWORD') 33 pass: Env.get('MAIL_PASSWORD')