Skip to content

Commit 5e7ec0c

Browse files
committed
Missing default config parameter added (#337)
1 parent ec463db commit 5e7ec0c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
1414
### Breaking changes
1515
- NaN
1616

17+
## [2.0.2] - 2020-09-23
18+
### Fixed
19+
- Missing default config parameter added (#337)
20+
1721
## [2.0.1] - 2020-09-22
1822
### Fixed
1923
- Wrong path to config directory (#336)

src/config/imap.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
'validate_cert' => env('IMAP_VALIDATE_CERT', true),
5555
'username' => env('IMAP_USERNAME', '[email protected]'),
5656
'password' => env('IMAP_PASSWORD', ''),
57+
'authentication' => null,
5758
],
5859

5960
/*
@@ -74,6 +75,7 @@
7475
'validate_cert' => true,
7576
'username' => '',
7677
'password' => '',
78+
'authentication' => null,
7779
]
7880
*/
7981
],

0 commit comments

Comments
 (0)