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

Overwrite potential SMTP settings in Drupal such that mails still get delivered to Mailhog

parent ea6affc9
No related branches found
Tags v0.2.8
No related merge requests found
Pipeline #
......@@ -17,3 +17,9 @@ $databases = array (
),
),
);
$config['smtp.settings']['smtp_host'] = 'mailhog';
$config['smtp.settings']['smtp_hostbackup'] = '';
$config['smtp.settings']['smtp_port'] = '1025';
$config['smtp.settings']['smtp_protocol'] = 'standard';
$config['smtp.settings']['smtp_username'] = '';
$config['smtp.settings']['smtp_password'] = '';
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