Skip to content

Commit

Permalink
Missing default config parameter added #346
Browse files Browse the repository at this point in the history
  • Loading branch information
Webklex committed Oct 8, 2020
1 parent 3950cc2 commit 7ff711f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip

## [UNRELEASED]
### Fixed
- Default account might not be set correctly if set manually.
- Missing default config parameter added #346

### Added
- NaN
Expand Down
4 changes: 4 additions & 0 deletions src/config/imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@
| -Delimiter (optional):
| This option is only used when calling $oClient->
| You can use any supported char such as ".", "/", (...)
| -Fetch option:
| IMAP::FT_UID - Message marked as read by fetching the message body
| IMAP::FT_PEEK - Fetch the message without setting the "seen" flag
| -Body download option
| Default TRUE
| -Flag download option
Expand All @@ -114,6 +117,7 @@
*/
'options' => [
'delimiter' => '/',
'fetch' => \Webklex\PHPIMAP\IMAP::FT_UID,
'fetch_body' => true,
'fetch_flags' => true,
'message_key' => 'list',
Expand Down

0 comments on commit 7ff711f

Please sign in to comment.