]> scripts.mit.edu Git - www/raw.git/blob - faq/67.mdwn
Import from TextPattern
[www/raw.git] / faq / 67.mdwn
1 [[!meta title="Why do my mail scripts not generate bounces?"]]
2 The scripts server interprets procmail failures as temporary
3 failures, queueing the mail until the procmailrc is fixed. This is
4 useful if your procmailrc is unreadable or broken, but it can make
5 debugging difficult. If you want to explicitly bounce a message,
6 you can use a stanza similar to this in your procmailrc file:
7
8     :0:
9     * ^Delivered-To:.*USER_NAME\+TAG@.*
10     {
11             EXITCODE=67
12             HOST
13     }
14
15 The list of recognized exit codes can be found in the
16 [sysexits(3) manpage](http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits).
17
18
19