home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / mm-0.90 / pathnames.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-18  |  1.5 KB  |  66 lines

  1. /*
  2.  * Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3.  * the City of New York.  Permission is granted to any individual or
  4.  * institution to use, copy, or redistribute this software so long as it
  5.  * is not sold for profit, provided this copyright notice is retained.
  6.  */
  7.  
  8. #ifdef RCSID
  9. #ifndef lint
  10. static char *pathnames_rcsid = "$Header: /f/src2/encore.bin/cucca/mm/tarring-it-up/RCS/pathnames.h,v 2.1 90/10/04 18:25:29 melissa Exp $";
  11. #endif
  12. #endif /* RCSID */
  13.  
  14. /*
  15.  * Provide default values for any pathnames not defined in config.h.
  16.  *
  17.  * This file is meant primarily as documentation, not something that
  18.  * should be changed to match site-specific needs (use config.h for that).
  19.  */
  20.  
  21. #ifndef TMPDIR
  22. #define TMPDIR        "/usr/tmp"
  23. #endif
  24.  
  25. #ifndef SPOOL_DIRECTORY
  26. #define SPOOL_DIRECTORY    "/usr/spool/mail"
  27. #endif
  28.  
  29. #ifndef EDITOR
  30. #define EDITOR        "emacs"
  31. #endif
  32. #ifndef PAGER
  33. #define PAGER        "more"
  34. #endif
  35. #ifndef SPELLER
  36. #define SPELLER        "ispell"
  37. #endif
  38.  
  39. #ifndef BUGSTO
  40. #define BUGSTO        "bug-mm"
  41. #endif
  42.  
  43. #ifndef LIBDIR
  44. #define LIBDIR        "/usr/local/lib/mm"
  45. #endif
  46. #ifndef SYSINIT
  47. #define SYSINIT        "/usr/local/lib/mm/mm.conf"
  48. #endif
  49. #ifndef HELPFILE
  50. #define HELPFILE    "/usr/local/lib/mm/mm.help"
  51. #endif
  52. #ifndef HELPDIR
  53. #define HELPDIR        "/usr/local/lib/mm/help"
  54. #endif
  55. #ifndef MMAIL_PATH
  56. #define MMAIL_PATH    "/usr/local/lib/mm/mmail.el"
  57. #endif
  58. #ifndef MOVEMAIL
  59. #define MOVEMAIL    "/usr/local/lib/mm/movemail"
  60. #endif
  61. #ifdef USAGE
  62. #ifndef USAGEFILE
  63. #define USAGEFILE    "/usr/local/lib/mm/usage.log"
  64. #endif
  65. #endif
  66.