0
|
1 /* |
|
2 * even some UNIX systems have ancient, unusable versions of sysexits.h |
|
3 * Rhyolite Software DCC 1.3.103-1.5 $Revision$ |
|
4 * |
|
5 * Copyright (c) 1987, 1993 |
|
6 * The Regents of the University of California. All rights reserved. |
|
7 * |
|
8 * Redistribution and use in source and binary forms, with or without |
|
9 * modification, are permitted provided that the following conditions |
|
10 * are met: |
|
11 * 1. Redistributions of source code must retain the above copyright |
|
12 * notice, this list of conditions and the following disclaimer. |
|
13 * 2. Redistributions in binary form must reproduce the above copyright |
|
14 * notice, this list of conditions and the following disclaimer in the |
|
15 * documentation and/or other materials provided with the distribution. |
|
16 * 3. All advertising materials mentioning features or use of this software |
|
17 * must display the following acknowledgement: |
|
18 * This product includes software developed by the University of |
|
19 * California, Berkeley and its contributors. |
|
20 * 4. Neither the name of the University nor the names of its contributors |
|
21 * may be used to endorse or promote products derived from this software |
|
22 * without specific prior written permission. |
|
23 * |
|
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
|
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
|
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
|
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
|
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
|
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
|
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
|
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
34 * SUCH DAMAGE. |
|
35 * |
|
36 * @(#)sysexits.h 8.1 (Berkeley) 6/2/93 |
|
37 */ |
|
38 |
|
39 #ifndef SENDMAIL_SYSEXITS_H |
|
40 #define SENDMAIL_SYSEXITS_H |
|
41 |
|
42 /* |
|
43 * SYSEXITS.H -- Exit status codes for system programs. |
|
44 * |
|
45 * This include file attempts to categorize possible error |
|
46 * exit statuses for system programs, notably delivermail |
|
47 * and the Berkeley network. |
|
48 * |
|
49 * Error numbers begin at EX__BASE to reduce the possibility of |
|
50 * clashing with other exit statuses that random programs may |
|
51 * already return. The meaning of the codes is approximately |
|
52 * as follows: |
|
53 * |
|
54 * EX_USAGE -- The command was used incorrectly, e.g., with |
|
55 * the wrong number of arguments, a bad flag, a bad |
|
56 * syntax in a parameter, or whatever. |
|
57 * EX_DATAERR -- The input data was incorrect in some way. |
|
58 * This should only be used for user's data & not |
|
59 * system files. |
|
60 * EX_NOINPUT -- An input file (not a system file) did not |
|
61 * exist or was not readable. This could also include |
|
62 * errors like "No message" to a mailer (if it cared |
|
63 * to catch it). |
|
64 * EX_NOUSER -- The user specified did not exist. This might |
|
65 * be used for mail addresses or remote logins. |
|
66 * EX_NOHOST -- The host specified did not exist. This is used |
|
67 * in mail addresses or network requests. |
|
68 * EX_UNAVAILABLE -- A service is unavailable. This can occur |
|
69 * if a support program or file does not exist. This |
|
70 * can also be used as a catchall message when something |
|
71 * you wanted to do doesn't work, but you don't know |
|
72 * why. |
|
73 * EX_SOFTWARE -- An internal software error has been detected. |
|
74 * This should be limited to non-operating system related |
|
75 * errors as possible. |
|
76 * EX_OSERR -- An operating system error has been detected. |
|
77 * This is intended to be used for such things as "cannot |
|
78 * fork", "cannot create pipe", or the like. It includes |
|
79 * things like getuid returning a user that does not |
|
80 * exist in the passwd file. |
|
81 * EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp, |
|
82 * etc.) does not exist, cannot be opened, or has some |
|
83 * sort of error (e.g., syntax error). |
|
84 * EX_CANTCREAT -- A (user specified) output file cannot be |
|
85 * created. |
|
86 * EX_IOERR -- An error occurred while doing I/O on some file. |
|
87 * EX_TEMPFAIL -- temporary failure, indicating something that |
|
88 * is not really an error. In sendmail, this means |
|
89 * that a mailer (e.g.) could not create a connection, |
|
90 * and the request should be reattempted later. |
|
91 * EX_PROTOCOL -- the remote system returned something that |
|
92 * was "not possible" during a protocol exchange. |
|
93 * EX_NOPERM -- You did not have sufficient permission to |
|
94 * perform the operation. This is not intended for |
|
95 * file system problems, which should use NOINPUT or |
|
96 * CANTCREAT, but rather for higher level permissions. |
|
97 */ |
|
98 |
|
99 #define EX_OK 0 /* successful termination */ |
|
100 |
|
101 #define EX__BASE 64 /* base value for error messages */ |
|
102 |
|
103 #define EX_USAGE 64 /* command line usage error */ |
|
104 #define EX_DATAERR 65 /* data format error */ |
|
105 #define EX_NOINPUT 66 /* cannot open input */ |
|
106 #define EX_NOUSER 67 /* addressee unknown */ |
|
107 #define EX_NOHOST 68 /* host name unknown */ |
|
108 #define EX_UNAVAILABLE 69 /* service unavailable */ |
|
109 #define EX_SOFTWARE 70 /* internal software error */ |
|
110 #define EX_OSERR 71 /* system error (e.g., can't fork) */ |
|
111 #define EX_OSFILE 72 /* critical OS file missing */ |
|
112 #define EX_CANTCREAT 73 /* can't create (user) output file */ |
|
113 #define EX_IOERR 74 /* input/output error */ |
|
114 #define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */ |
|
115 #define EX_PROTOCOL 76 /* remote error in protocol */ |
|
116 #define EX_NOPERM 77 /* permission denied */ |
|
117 #define EX_CONFIG 78 /* configuration error */ |
|
118 |
|
119 #define EX__MAX 78 /* maximum listed value */ |
|
120 |
|
121 |
|
122 |
|
123 /* ********************************************************************* |
|
124 * DCC additions */ |
|
125 |
|
126 /* fix scripts that assume EX_DCC_RESTART=79 if this changes */ |
|
127 #define EX_DCC_RESTART (EX__MAX+1) /* restart dccm, dccifd, or dccd */ |
|
128 |
|
129 |
|
130 #endif /* !SENDMAIL_SYSEXITS_H */ |