Add verify_peer to mail config

This commit is contained in:
philipp lang 2022-11-09 01:33:12 +01:00
parent c84055c6e2
commit 2150139abf
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,6 @@
<?php <?php
return [ return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Default Mailer | Default Mailer
@ -42,6 +41,8 @@ return [
'username' => env('MAIL_USERNAME'), 'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'), 'password' => env('MAIL_PASSWORD'),
'timeout' => null, 'timeout' => null,
'verify_peer' => env('MAIL_VERIFY_PEER', true),
'verify_peer_name' => env('MAIL_VERIFY_PEER', true),
], ],
'ses' => [ 'ses' => [
@ -105,5 +106,4 @@ return [
resource_path('views/vendor/mail'), resource_path('views/vendor/mail'),
], ],
], ],
]; ];