There was an error while loading. Please reload this page.
1 parent 5c14c7f commit 1d1fce3Copy full SHA for 1d1fce3
CHANGELOG.md
@@ -6,7 +6,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
6
7
## [UNRELEASED]
8
### Fixed
9
-- NaN
+- Missing env variable `IMAP_AUTHENTICATION` added
10
11
### Added
12
- Default folder locations added
src/config/imap.php
@@ -54,7 +54,7 @@
54
'validate_cert' => env('IMAP_VALIDATE_CERT', true),
55
'username' => env('IMAP_USERNAME', 'root@example.com'),
56
'password' => env('IMAP_PASSWORD', ''),
57
- 'authentication' => null,
+ 'authentication' => env('IMAP_AUTHENTICATION', null),
58
],
59
60
/*
0 commit comments