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

#54 Fix SMTP settings for dev env when not configured on live site

parent 611b6746
No related branches found
No related tags found
1 merge request!38Merging develop into main
Pipeline #605775 passed
......@@ -32,6 +32,8 @@ $databases = array(
),
);
{% if not drupal.live|default(0) or mailhog.enable %}
$config['system.mail']['interface']['default'] = 'SMTPMailSystem';
$config['smtp.settings']['smtp_on'] = TRUE;
$config['smtp.settings']['smtp_host'] = 'mailhog';
$config['smtp.settings']['smtp_hostbackup'] = '';
$config['smtp.settings']['smtp_port'] = '1025';
......
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