Skip to content

Commit 1d1fce3

Browse files
committed
Missing env variable IMAP_AUTHENTICATION added
1 parent 5c14c7f commit 1d1fce3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
66

77
## [UNRELEASED]
88
### Fixed
9-
- NaN
9+
- Missing env variable `IMAP_AUTHENTICATION` added
1010

1111
### Added
1212
- Default folder locations added

src/config/imap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
'validate_cert' => env('IMAP_VALIDATE_CERT', true),
5555
'username' => env('IMAP_USERNAME', 'root@example.com'),
5656
'password' => env('IMAP_PASSWORD', ''),
57-
'authentication' => null,
57+
'authentication' => env('IMAP_AUTHENTICATION', null),
5858
],
5959

6060
/*

0 commit comments

Comments
 (0)