From 223d1bb8a9899340ef6a533669619863e19429f5 Mon Sep 17 00:00:00 2001 From: bbrendon Date: Wed, 8 Mar 2023 08:56:55 -0800 Subject: [PATCH 1/2] Update mail.php allow disabling cert verification with docker. This is a behavior change after 3.7 --- config/mail.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/mail.php b/config/mail.php index 75c353d56a0..5e190ce6733 100644 --- a/config/mail.php +++ b/config/mail.php @@ -41,6 +41,7 @@ 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), + 'verify_peer' => env('MAIL_VERIFY_PEER', true), ], 'ses' => [ From d67a3d7f6cda1b5c48feee82615743fd90a416d6 Mon Sep 17 00:00:00 2001 From: bbrendon Date: Wed, 8 Mar 2023 17:23:30 -0800 Subject: [PATCH 2/2] Update mail.php --- config/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 5e190ce6733..9e4b2cae4c4 100644 --- a/config/mail.php +++ b/config/mail.php @@ -41,7 +41,7 @@ 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), - 'verify_peer' => env('MAIL_VERIFY_PEER', true), + 'verify_peer' => env('MAIL_VERIFY_PEER', true), ], 'ses' => [