Skip to content

Commit a5c09cd

Browse files
committed
Config comments updated
1 parent 7b742ab commit a5c09cd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/config/imap.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
| IMAP default account
1818
|--------------------------------------------------------------------------
1919
|
20-
| The default account identifier
20+
| The default account identifier. It will be used as default for any missing account parameters.
21+
| If however the default account is missing a parameter the package default will be used.
22+
| Set to 'false' [boolean] to disable this functionality.
2123
|
2224
*/
2325
'default' => env('IMAP_DEFAULT_ACCOUNT', 'default'),
@@ -36,7 +38,7 @@
3638
'default' => [// account identifier
3739
'host' => env('IMAP_HOST', 'localhost'),
3840
'port' => env('IMAP_PORT', 993),
39-
'protocol' => env('IMAP_PROTOCOL', 'imap'), //might also use imap, pop3 or nntp (untested)
41+
'protocol' => env('IMAP_PROTOCOL', 'imap'), //might also use imap, [pop3 or nntp (untested)]
4042
'encryption' => env('IMAP_ENCRYPTION', 'ssl'), // Supported: false, 'ssl', 'tls'
4143
'validate_cert' => env('IMAP_VALIDATE_CERT', true),
4244
'username' => env('IMAP_USERNAME', '[email protected]'),

0 commit comments

Comments
 (0)