Skip to content

Commit

Permalink
fix(bounces): fixed bounce handling in mail queue
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Feb 8, 2024
1 parent 9a45336 commit 05d2b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mail-queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ class MailQueue {
};

if (!bounces.canSendBounce(deliveryEntry, { logName: 'Queue' })) {
return false;
return callback(null, true);
}

return plugins.handler.runHooks(
Expand Down

0 comments on commit 05d2b8d

Please sign in to comment.