Skip to content
Snippets Groups Projects
Commit e7528365 authored by jurgenhaas's avatar jurgenhaas
Browse files

#44 Enable preconfigured Mailhog release mail feature

parent b72be349
No related branches found
Tags v3.4.1
No related merge requests found
......@@ -91,11 +91,11 @@ class Handler extends BaseHandler {
'overwriteconfig' => FALSE,
],
'mailhog' => [
'host' => $this->env->receiveGlobal('MAILHOG_HOST', 'smtp.freesmtpservers.com'),
'port' => $this->env->receiveGlobal('MAILHOG_PORT', '25'),
'username' => $this->env->receiveGlobal('MAILHOG_USERNAME', ''),
'password' => $this->env->receiveGlobal('MAILHOG_PASSWORD', ''),
'mechanism' => $this->env->receiveGlobal('MAILHOG_MECHANISM', 'NONE'),
'host' => $this->env->receiveGlobal('MAILHOG_HOST', 'MailHog Host', 'smtp.freesmtpservers.com'),
'port' => $this->env->receiveGlobal('MAILHOG_PORT', 'MailHog Port', '25'),
'username' => $this->env->receiveGlobal('MAILHOG_USERNAME', 'MailHog Username', ''),
'password' => $this->env->receiveGlobal('MAILHOG_PASSWORD', 'MailHog Password', ''),
'mechanism' => $this->env->receiveGlobal('MAILHOG_MECHANISM', 'MailHog Auth Mechanism', 'NONE'),
],
'varnish' => [
'enable' => 0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment