home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume14 / mush6.0 / patch1 / Mailrc < prev    next >
Encoding:
Text File  |  1988-04-28  |  1.4 KB  |  51 lines

  1. # .mushrc to cause Mush to emulate UCB Mail
  2. # -- Bart Schaefer (schaefer@cse.ogc.edu)
  3. #----------------------------------------------------------------------------
  4. # Shortcomings:
  5. #  Mush does not support the "noisy phone line" flags of Mail
  6. #   (-i command line option or "set ignore" to ignore RUBOUT characters)
  7. #  Mush will never remove a system mailbox (no "unset keep" equivalent)
  8. #  See comments below on (lack of) command prefix recognition
  9. #  Date shown in headers ought to be date received, but instead is date sent
  10. #----------------------------------------------------------------------------
  11. #
  12. # Set up prompting, headers
  13. #
  14. set prompt='& '
  15. set mil_time
  16. set hdr_format='%8.80a %D %M %-2N %5T  %l/%c "%.29s"'
  17. #
  18. # Set up mailing/replying miscellaneous
  19. #
  20. set indent_str = "    "
  21. set reply_to_hdr auto_route
  22. #
  23. # Set up command interface
  24. #  Note that a full emulation is difficult, because Mush does not support
  25. #  command prefix recognition (e.g., Mail interprets "Rep" as "Reply").
  26. #
  27. # No cmd can use '\!*' because ignore_bang must be set.  Yuck.
  28. set ignore_bang
  29. # This stuff is fine, but really needs prefix recognition.
  30. #
  31. cmd Reply replysender
  32. cmd R replysender
  33. cmd chdir cd
  34. cmd chd cd
  35. cmd + next
  36. cmd ch cd
  37. cmd c copy
  38. cmd file folder
  39. cmd fi folder
  40. cmd hold preserve
  41. cmd ho preserve
  42. cmd reply replyall
  43. cmd r replyall
  44. cmd se set
  45. cmd shell sh
  46. cmd so source
  47. cmd un undelete
  48. cmd unread "flags U"    # "flags" is undocumented, but so is "unread" in Mail
  49. cmd uns unset
  50.  
  51.