home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume9 / pc-mail-nfs / sysexits.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-26  |  972 b   |  48 lines

  1. /*++
  2. /* NAME
  3. /*    sysexits 5
  4. /* SUMMARY
  5. /*    exit status codes for programs called by sendmail
  6. /* PROJECT
  7. /*    pc-mail
  8. /* PACKAGE
  9. /*    nfs
  10. /* SYNOPSIS
  11. /*    #include "sysexits.h"
  12. /* DESCRIPTION
  13. /* .nf
  14.  
  15.  /* sendmail-compatible exit status codes */
  16.  
  17. #define    EX_OK        0
  18. #define EX_USAGE    64
  19. #define EX_DATAERR    65
  20. #define EX_NOINPUT    66
  21. #define EX_NOUSER    67
  22. #define EX_NOHOST    68
  23. #define EX_UNAVAILABLE    69
  24. #define EX_SOFTWARE    70
  25. #define EX_OSERR    71
  26. #define EX_OSFILE    72
  27. #define EX_CANTCREAT    73
  28. #define EX_IOERR    74
  29. #define EX_TEMPFAIL    75
  30. #define EX_PROTOCOL    76
  31. #define EX_NOPERM    77
  32. /* AUTHOR(S)
  33. /*    Wietse Z. Venema
  34. /*    Eindhoven University of Technology
  35. /*    Department of Mathematics and Computer Science
  36. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  37. /*
  38. /*    These codes were actually defined by Eric Allman, the originator
  39. /*    of the sendmail program.
  40. /* CREATION DATE
  41. /*    Sun Oct 29 16:03:19 MET 1989
  42. /* LAST MODIFICATION
  43. /*    10/29/89 22:29:47
  44. /* VERSION/RELEASE
  45. /*    1.1
  46. /*--*/
  47.  
  48.