This commit is contained in:
Andreas Knuth 2026-02-22 21:47:03 -06:00
parent b2d41e2baa
commit 39e862cdd5
1 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,11 @@
<?php
$config['language'] = 'en_US';
// WICHTIG: Zuerst die vom Docker-Container generierte Config einbinden!
if (file_exists(__DIR__ . '/config.docker.inc.php')) {
include_once(__DIR__ . '/config.docker.inc.php');
}
// Deine Overrides (hier wird alles überschrieben, was wir brauchen)
$config['smtp_server'] = 'ssl://mailserver';
$config['smtp_port'] = 465;
@ -12,3 +16,5 @@ $config['smtp_conn_options'] = array(
'allow_self_signed' => true,
),
);
$config['language'] = 'en_US';