home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume14 / mush6.0 / part01 / config.h-dist < prev    next >
Text File  |  1988-04-12  |  2KB  |  57 lines

  1. /* config.h 1.1    (c) copyright 1986 (Dan Heller) */
  2.  
  3. #define MAILRC        ".mushrc"
  4. #define ALTERNATE_RC    ".mailrc"
  5. #define LIBDIR        "/usr/lib
  6. #define DEFAULT_RC    LIBDIR/Mail.rc"
  7. #define COMMAND_HELP    LIBDIR/cmd_help"
  8. #ifdef SUNTOOL
  9. #    define TOOL_HELP    LIBDIR/tool_help"
  10. #endif /* SUNTOOL */
  11. #define ALTERNATE_HOME    "/tmp"       /* Path must be read/write to EVERYONE */
  12. #define EDFILE      ".edXXXXXX"  /* file/pathname added to user's "home" */
  13.  
  14. /* mail delivery system */
  15. #define MAIL_DELIVERY    "/usr/lib/sendmail -i"
  16. #define VERBOSE_ARG    "-v"    /* undef if none exists */
  17. #define METOO_ARG    "-m"    /* man sendmail for more info. */
  18.  
  19. #define    MAXMSGS        1000    /* maximum number of messages we can read */
  20. #ifndef MAXPATHLEN
  21. #define MAXPATHLEN 256
  22. #endif
  23.  
  24. #define VPRINTF        /* If your system supports the vprintf() functions,
  25.              * True for sys-v and later sun versions (3.0+ ?).
  26.              */
  27.  
  28. /* If your mail transfer agent uses something *besides* "From " to separate
  29.  * adjacent messages in a folder, define MSG_SEPARATOR to be this string.
  30.  * If that string is 4 ^A's, then the string would be "\001\001\001\001"
  31.  * If you don't know what this means, leave it alone.
  32.  */
  33. /* #define MSG_SEPARATOR "From " */
  34.  
  35. /* The maximum number of hostnames YOUR host may have (usually found in
  36.  * /etc/hosts for BSD systems).  System-V/xenix doesn't use this (use 1).
  37.  */
  38. #define MAX_HOST_NAMES  1
  39.  
  40. #define LS_COMMAND    "ls"
  41. #define FORTUNE        "/usr/games/fortune"
  42. #define LPR        "lpr"
  43. #define SIGNATURE    ".signature"
  44. #define MAILDIR        "/usr/spool/mail"
  45.  
  46. /* default settings for some variable strings */
  47. #define DEF_PROMPT    "Msg %m of %t: "
  48. #define DEF_PAGER    "more" /* set to "internal" to use internal pager */
  49. #define DEF_SHELL    "csh"
  50. #define DEF_EDITOR    "vi"
  51. #define DEF_FOLDER    "~/Mail"        /* default Mail folder */
  52. #define DEF_MBOX    "~/mbox"    /* default mbox */
  53. #define DEF_INDENT_STR    "> "        /* indent included mail */
  54. #define DEF_PRINTER    "lp"
  55. #define DEF_ESCAPE    "~"
  56. #define DEF_HDR_FMT    "%25f %7d (%l/%c) \"%s\"" /* default hdr_format */
  57.