From 600493f1cb3c7d319b53877a7135253e07ba9304 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 9 Sep 2015 16:59:07 +0200 Subject: [PATCH] new MAIL_ENCRYPTION parameter Make the encryption parameter of the mail transport configuration configurable with an environment variable. Default is still the same: tls --- config/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 3588fecef..d0584d7d0 100644 --- a/config/mail.php +++ b/config/mail.php @@ -76,7 +76,7 @@ return [ | */ - 'encryption' => 'tls', + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), /* |--------------------------------------------------------------------------