Project

General

Profile

Actions

Patch #4368

closed

rdm-mailhandler.rb should provide feedback to the MTA, rather than failing silently

Added by Peter Fern over 14 years ago. Updated over 14 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Email receiving
Target version:
Start date:
2009-12-09
Due date:
% Done:

0%

Estimated time:

Description

This patch causes the script to return an exit code to the spawning process, adds a message about invalid email addresses (response.code == 422), returns 77 (EX_NOPERM) for 400..499, returns 75 (EX_TEMPFAIL) for 500..599, and returns 1 for all other errors.

I'm not sure if EX_TEMPFAIL is the right thing to do for 5xx errors (or at least for all 5xx errors), but it seemed like a good idea as these are usually transient.


Files

rdm-mailhandler_exitcode.patch (1.55 KB) rdm-mailhandler_exitcode.patch Peter Fern, 2009-12-09 09:52
Actions #1

Updated by Jean-Philippe Lang over 14 years ago

Is there a particular meaning for the return codes 77 and 75 ?

Actions #2

Updated by Peter Fern over 14 years ago

Jean-Philippe Lang wrote:

Is there a particular meaning for the return codes 77 and 75 ?

Indeed, they come from sysexits.h, and are used by many MTAs to decide what action is to be taken for processing handler errors returning these codes. The textual representations are fairly self-explanatory, and the actions taken vary depending on MTA and configuration, however for clarity, an excerpt from sysexits.h:

#define EX_TEMPFAIL 75 /* temp failure; user is invited to retry /
#define EX_NOPERM 77 /
permission denied */

So, 75 generally results in the email being re-queued for a later delivery attempt (often there is a re-queue limit, and the mail will eventually bounce), and 77 generally results in emails being bounced immediately with an error description (permission denied).

Actions #3

Updated by Jean-Philippe Lang over 14 years ago

  • Status changed from New to Closed
  • Target version set to 0.9.0

Patch committed in r3143 with small changes to the messages and 403 response code fixed (was 443 in your patch).
Thanks.

Actions #4

Updated by Peter Fern over 14 years ago

Whoops, thanks for catching that, and for the commit.

Actions

Also available in: Atom PDF