Advertisement
Guest User

Untitled

a guest
Aug 17th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ErrorException in StreamBuffer.php line 95:
  2. stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages:
  3. error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
  4.  
  5. MAIL_DRIVER=smtp
  6. MAIL_HOST=smtp-relay.gmail.com
  7. MAIL_PORT=587
  8. MAIL_USERNAME=**********@gmail.com
  9. MAIL_PASSWORD=*********
  10. MAIL_ENCRYPTION=ssl
  11.  
  12. return [
  13. 'driver' => env('MAIL_DRIVER', 'smtp'),
  14. 'host' => env('MAIL_HOST', 'smtp-relay.gmail.comt'),
  15. 'port' => env('MAIL_PORT', 587),
  16. 'from' => ['address' => null, 'name' => null],
  17. 'encryption' => env('MAIL_ENCRYPTION', 'ssl'),
  18. 'username' => env('MAIL_USERNAME'),
  19. 'password' => env('MAIL_PASSWORD'),
  20. 'sendmail' => '/usr/sbin/sendmail -bs',
  21. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement