mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
14 lines
356 B
Bash
14 lines
356 B
Bash
#!@SH@
|
|
# Copyright (c) 1998-2001 Software in the Public Interest
|
|
# <http://www.debian.org/>
|
|
# Written by Philip Hands. Distributed under the GNU GPL.
|
|
# Modified slightly by Dave Sill.
|
|
|
|
@PREFIX@/bin/preline @PREFIX@/bin/procmail && exit 0
|
|
|
|
# check if procmail returned EX_TEMPFAIL (75)
|
|
[ $? = 75 ] && exit 111
|
|
|
|
# otherwise return a permanent error
|
|
exit 100
|