add EX_TEMPFAIL (and id keywords)
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Fri, 16 Oct 1981 12:35:35 +0000 (04:35 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Fri, 16 Oct 1981 12:35:35 +0000 (04:35 -0800)
SCCS-vsn: include/sysexits.h 1.2

usr/src/include/sysexits.h

index 71e736b..72fdfeb 100644 (file)
 **     EX_CANTCREAT -- A (user specified) output file cannot be
 **             created.
 **     EX_IOERR -- An error occurred while doing I/O on some file.
 **     EX_CANTCREAT -- A (user specified) output file cannot be
 **             created.
 **     EX_IOERR -- An error occurred while doing I/O on some file.
+**     EX_TEMPFAIL -- temporary failure, indicating something that
+**             is not really an error.  In sendmail, this means
+**             that a mailer (e.g.) could not create a connection,
+**             and the request should be reattempted later.
+**
+**     Maintained by IngVAX:eric (eric@berkeley, ucbvax!eric) --
+**             please mail changes to me.
 */
 
 # define EX_OK         0       /* successful termination */
 */
 
 # define EX_OK         0       /* successful termination */
@@ -60,3 +67,4 @@
 # define EX_OSFILE     72      /* critical OS file missing */
 # define EX_CANTCREAT  73      /* can't create (user) output file */
 # define EX_IOERR      74      /* input/output error */
 # define EX_OSFILE     72      /* critical OS file missing */
 # define EX_CANTCREAT  73      /* can't create (user) output file */
 # define EX_IOERR      74      /* input/output error */
+# define EX_TEMPFAIL   75      /* temp failure; user is invited to retry */