removed peer verification for emails

This commit is contained in:
Naser Mansour 2026-01-28 17:12:41 +02:00
parent 80c4f621de
commit 147231f216
1 changed files with 7 additions and 0 deletions

View File

@ -47,6 +47,13 @@ return [
'password' => env('MAIL_PASSWORD'), 'password' => env('MAIL_PASSWORD'),
'timeout' => null, 'timeout' => null,
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)), 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
'stream' => [
'ssl' => [
'allow_self_signed' => true,
'verify_peer' => false,
'verify_peer_name' => false,
],
],
], ],
'ses' => [ 'ses' => [