summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-04-20 20:02:22 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2019-04-20 20:02:22 +0200
commite1be950fb13b824270e3bed3e47ef5e9c2ae25b8 (patch)
treec8937cfde80f737c8d8e46c4fe463bfb26d62f6e /config
parent58ca7113f3cd3158a8ae1b02853ece0c4dba4eda (diff)
config: Improved mail encryption documentation
Diffstat (limited to 'config')
-rw-r--r--config/config.default.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.default.php b/config/config.default.php
index d1692590..86320a4a 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -39,12 +39,12 @@ return [
'from' => [
// From address of all emails
'address' => env('MAIL_FROM_ADDRESS', 'noreply@engelsystem.de'),
- 'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Engelsystem'))
+ 'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Engelsystem')),
],
'host' => env('MAIL_HOST', 'localhost'),
'port' => env('MAIL_PORT', 587),
- // Transport encryption like tls
+ // Transport encryption like tls (for starttls) or ssl
'encryption' => env('MAIL_ENCRYPTION', null),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),