Skip to content

Commit

Permalink
Default config updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Webklex committed Aug 19, 2022
1 parent 3226d07 commit 7552dcb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/config/imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@
| Default TRUE - Set to FALSE to prevent the usage of \imap_rfc822_parse_headers().
| See https://github.com/Webklex/php-imap/issues/115 for more information.
| -Debug enable to trace communication traffic
| -UID cache enable the UID cache
| -Fallback date is used if the given message date could not be parsed
| -Boundary regex used to detect message boundaries. If you are having problems with empty messages, missing
| attachments or anything like this. Be advised that it likes to break which causes new problems..
| -Message key identifier option
Expand Down Expand Up @@ -148,6 +150,8 @@
'soft_fail' => false,
'rfc822' => true,
'debug' => false,
'uid_cache' => true,
// 'fallback_date' => "01.01.1970 00:00:00",
'boundary' => '/boundary=(.*?(?=;)|(.*))/i',
'message_key' => 'list',
'fetch_order' => 'asc',
Expand All @@ -168,6 +172,15 @@
]
],

/*
|--------------------------------------------------------------------------
| Available flags
|--------------------------------------------------------------------------
|
| List all available / supported flags. Set to null to accept all given flags.
*/
'flags' => ['recent', 'flagged', 'answered', 'deleted', 'seen', 'draft'],

/*
|--------------------------------------------------------------------------
| Available events
Expand Down

0 comments on commit 7552dcb

Please sign in to comment.