79095057

Date: 2024-10-16 16:55:17
Score: 1
Natty:
Report link

Same problem here. The code that breaks the "Configure options" functionality is

'MAIL' => [
    ...
    'transport_smtp_stream_options' => [
        'ssl' => [
            'verify_peer' => false,
            'verify_peer_name' => false,
        ],
    ],
],

But this only happens if the code is in the file settings.php. If you write it in the file additional.php, it should work.

$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport_smtp_stream_options']['ssl']['verify_peer'] = false;
$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport_smtp_stream_options']['ssl']['verify_peer_name'] = false;

I don't know exactly when, but this must have changed in one of the last versions after 12.4.11.

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: matthaa