We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80961d4 commit caad41aCopy full SHA for caad41a
config/mailbox.php
@@ -6,7 +6,7 @@
6
7
'path' => 'laravel-mailbox',
8
9
- 'retention_in_days' => 1,
+ 'store_incoming_emails_for_days' => 1,
10
11
'services' => [
12
src/MailboxRouter.php
@@ -66,7 +66,7 @@ public function callMailboxes(InboundEmail $email)
66
67
protected function shouldStoreInboundEmails(): bool
68
{
69
- return config('mailbox.retention_in_days') > 0;
+ return config('mailbox.store_incoming_emails_for_days') > 0;
70
}
71
72
protected function storeEmail(InboundEmail $email)
0 commit comments