home *** CD-ROM | disk | FTP | other *** search
- # .mushrc to cause Mush to emulate UCB Mail
- # -- Bart Schaefer (schaefer@cse.ogc.edu)
- #----------------------------------------------------------------------------
- # Shortcomings:
- # Mush does not support the "noisy phone line" flags of Mail
- # (-i command line option or "set ignore" to ignore RUBOUT characters)
- # Mush will never remove a system mailbox (no "unset keep" equivalent)
- # See comments below on (lack of) command prefix recognition
- # Date shown in headers ought to be date received, but instead is date sent
- #----------------------------------------------------------------------------
- #
- # Set up prompting, headers
- #
- set prompt='& '
- set mil_time
- set hdr_format='%8.80a %D %M %-2N %5T %l/%c "%.29s"'
- #
- # Set up mailing/replying miscellaneous
- #
- set indent_str = " "
- set reply_to_hdr auto_route
- #
- # Set up command interface
- # Note that a full emulation is difficult, because Mush does not support
- # command prefix recognition (e.g., Mail interprets "Rep" as "Reply").
- #
- # No cmd can use '\!*' because ignore_bang must be set. Yuck.
- set ignore_bang
- # This stuff is fine, but really needs prefix recognition.
- #
- cmd Reply replysender
- cmd R replysender
- cmd chdir cd
- cmd chd cd
- cmd + next
- cmd ch cd
- cmd c copy
- cmd file folder
- cmd fi folder
- cmd hold preserve
- cmd ho preserve
- cmd reply replyall
- cmd r replyall
- cmd se set
- cmd shell sh
- cmd so source
- cmd un undelete
- cmd unread "flags U" # "flags" is undocumented, but so is "unread" in Mail
- cmd uns unset
-
-