Skip to content

Commit

Permalink
Missing default config parameter added (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
Webklex committed Sep 22, 2020
1 parent ec463db commit 5e7ec0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
### Breaking changes
- NaN

## [2.0.2] - 2020-09-23
### Fixed
- Missing default config parameter added (#337)

## [2.0.1] - 2020-09-22
### Fixed
- Wrong path to config directory (#336)
Expand Down
2 changes: 2 additions & 0 deletions src/config/imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
'validate_cert' => env('IMAP_VALIDATE_CERT', true),
'username' => env('IMAP_USERNAME', '[email protected]'),
'password' => env('IMAP_PASSWORD', ''),
'authentication' => null,
],

/*
Expand All @@ -74,6 +75,7 @@
'validate_cert' => true,
'username' => '',
'password' => '',
'authentication' => null,
]
*/
],
Expand Down

0 comments on commit 5e7ec0c

Please sign in to comment.