Closed wvogel closed 8 months ago
There is an error hat will cause an http error 500 when setting DELETE_PROCESSED_MAILS=true in .env.local.
DELETE_PROCESSED_MAILS=true
.env.local
Line 92 of src/Command/GetReportsFromMailboxCommand.php reads: $mailbox->deleteMail($mailId);
92
src/Command/GetReportsFromMailboxCommand.php
$mailbox->deleteMail($mailId);
It has to be: $mailbox->deleteMail($mailid);
$mailbox->deleteMail($mailid);
I sent a pull request...
Thanks!
Thanks for this wonderful project, Ante! :)
There is an error hat will cause an http error 500 when setting
DELETE_PROCESSED_MAILS=true
in.env.local
.Line
92
ofsrc/Command/GetReportsFromMailboxCommand.php
reads:$mailbox->deleteMail($mailId);
It has to be:
$mailbox->deleteMail($mailid);
I sent a pull request...