This commit is contained in:
Andreas Knuth 2026-02-22 15:45:28 -06:00
parent 8f0a899b66
commit dd41497f0b
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
// TLS-Verifikation intern deaktivieren (Roundcube → DMS im Docker-Netz)
$config['imap_conn_options'] = [
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
],
];
$config['smtp_conn_options'] = [
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
],
];