From 04ecb41611bd5df5c588695cdf01428b320c0bc8 Mon Sep 17 00:00:00 2001
From: Bryce Lowe <bryce@brycelowe.com>
Date: Sun, 12 May 2019 22:08:51 -0700
Subject: [PATCH] Updated configuration template file with additional comments

---
 config-templates/config.php | 22 ++++++++--------------
 1 file changed, 8 insertions(+), 14 deletions(-)

diff --git a/config-templates/config.php b/config-templates/config.php
index db81ed01b..d26076559 100644
--- a/config-templates/config.php
+++ b/config-templates/config.php
@@ -87,25 +87,19 @@ $config = [
      * Set the transport options for the transport method specified.  The valid settings are relative to the
      * selected transport method.
      */
-    //// smtp mail transport options
+    // // smtp mail transport options
     // 'mail.transport.options' => [
-    //     'host' => 'mail.example.org',
-    //     'port' => 25,
-    //     'username' => 'user@example.org', 'password' => '',
-    //     'security' => 'tls',
+    //     'host' => 'mail.example.org', // required
+    //     'port' => 25, // optional
+    //     'username' => 'user@example.org', // optional: if set, enables smtp authentication
+    //     'password' => 'password', // optional: if set, enables smtp authentication
+    //     'security' => 'tls', // optional: defaults to no smtp security
     // ],
-    //// sendmail mail transport options
+    // // sendmail mail transport options
     // 'mail.transport.options' => [
-    //     'path' => '/usr/sbin/sendmail'
+    //     'path' => '/usr/sbin/sendmail' // optional: defaults to php.ini path
     // ],
 
-    /*
-     * (Optional) When using the Sendmail transport method, provide an alternate path to the Sendmail
-     * executable.
-     */
-    //'mail.sendmail.path' => '',
-
-
     /*
      * The envelope from address for outgoing emails.
      * This should be in a domain that has your application's IP addresses in its SPF record
-- 
GitLab