Skip to content

Commit caad41a

Browse files
committed
wip
1 parent 80961d4 commit caad41a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/mailbox.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
'path' => 'laravel-mailbox',
88

9-
'retention_in_days' => 1,
9+
'store_incoming_emails_for_days' => 1,
1010

1111
'services' => [
1212

src/MailboxRouter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function callMailboxes(InboundEmail $email)
6666

6767
protected function shouldStoreInboundEmails(): bool
6868
{
69-
return config('mailbox.retention_in_days') > 0;
69+
return config('mailbox.store_incoming_emails_for_days') > 0;
7070
}
7171

7272
protected function storeEmail(InboundEmail $email)

0 commit comments

Comments
 (0)