Skip to content

Commit 06017f0

Browse files
committed
Default account identifier text updated
1 parent acc37d2 commit 06017f0

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ IMAP_ENCRYPTION=ssl
7474
IMAP_VALIDATE_CERT=true
7575
7676
IMAP_PASSWORD=secret
77+
IMAP_DEFAULT_ACCOUNT=default
7778
```
7879

7980
The following encryption methods are supported:
@@ -82,9 +83,9 @@ The following encryption methods are supported:
8283
- `tls` — Use TLS
8384

8485
Detailed [config/imap.php](src/config/imap.php) configuration:
85-
- `default` — by default this the imap handler will use this given account.
86+
- `default` — used default account
8687
- `accounts` — all available accounts
87-
- `default` — account identifier
88+
- `default` — default account identifier
8889
- `host` — imap host
8990
- `port` — imap port
9091
- `encryption` — desired encryption method

src/config/imap.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
/*
1616
|--------------------------------------------------------------------------
17-
| IMAP Host Address
17+
| IMAP default account
1818
|--------------------------------------------------------------------------
1919
|
20-
| By default this the imap handler will use this given account.
20+
| The default account identifier
2121
|
2222
*/
2323
'default' => env('IMAP_DEFAULT_ACCOUNT', 'default'),
@@ -33,7 +33,7 @@
3333
*/
3434
'accounts' => [
3535

36-
'default' => [
36+
'default' => [ // account identifier
3737
'host' => env('IMAP_HOST', 'localhost'),
3838
'port' => env('IMAP_PORT', 993),
3939
'encryption' => env('IMAP_ENCRYPTION', 'ssl'), // Supported: false, 'ssl', 'tls'
@@ -43,7 +43,7 @@
4343
],
4444

4545
/*
46-
'gmail' => [
46+
'gmail' => [ // account identifier
4747
'host' => 'imap.gmail.com',
4848
'port' => 993,
4949
'encryption' => 'ssl', // Supported: false, 'ssl', 'tls'
@@ -52,7 +52,7 @@
5252
'password' => 'PASSWORD',
5353
],
5454
55-
'another' => [
55+
'another' => [ // account identifier
5656
'host' => '',
5757
'port' => 993,
5858
'encryption' => false, // Supported: false, 'ssl', 'tls'

0 commit comments

Comments
 (0)