home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume18 / mush6.4 / part02 / Mailrc < prev    next >
Text File  |  1989-03-12  |  1KB  |  52 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. #----------------------------------------------------------------------------
  10. #
  11. # Set up prompting, headers
  12. #
  13. set prompt='& '
  14. set mil_time date_received
  15. set hdr_format='%8.80a %D %M %-2N %5T  %l/%c "%.29s"'
  16. #
  17. # Set up mailing/replying miscellaneous
  18. #
  19. set indent_str = "    "
  20. set reply_to_hdr auto_route
  21. #
  22. # Set up command interface
  23. #  Note that a full emulation is difficult, because Mush does not support
  24. #  command prefix recognition (e.g., Mail interprets "Rep" as "Reply").
  25. #
  26. # Don't barf if history doesn't work, but still do cmd expansion
  27. #
  28. set nonobang
  29. #
  30. # This stuff is fine, but really needs prefix recognition.
  31. #
  32. cmd Reply replysender
  33. cmd R replysender
  34. cmd chdir cd
  35. cmd chd cd
  36. cmd + next
  37. cmd ch cd
  38. cmd c copy
  39. cmd file folder
  40. cmd fi folder
  41. cmd hold preserve
  42. cmd ho hold
  43. cmd reply replyall
  44. cmd r replyall
  45. cmd retain "set show_hdrs='\!*'"    # Not quite right, but ...
  46. cmd se set
  47. cmd shell sh
  48. cmd so source
  49. cmd un undelete
  50. cmd unread 'flags \!* U'    # "unread" is undocumented in Mail
  51. cmd uns unset
  52.