readme 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. The Acme Mail program uses upas/fs to parse the mail box, and then
  2. presents a file-browser-like user interface to reading and sending
  3. messages. The Mail window presents each numbered message like the
  4. contents of a directory presented one per line. If a message has a
  5. Subject: line, that is shown indented on the following line.
  6. Multipart MIME-encoded messages are presented in the obvious
  7. hierarchical format.
  8. Mail uses upas/fs to access the mail box. By default it reads "mbox",
  9. the standard user mail box. If Mail is given an argument, it is
  10. passed to upas/fs as the name of the mail box (or upas/fs directory)
  11. to open.
  12. Although Mail works if the plumber is not running, it's designed to be
  13. run with plumbing enabled and many of its features work best if it is.
  14. The mailbox window has a few commands: Put writes back the mailbox;
  15. Mail creates a new window in which to compose a message; and Delmesg
  16. deletes messages by number. The number may be given as argument or
  17. indicated by selecting the header line in the mailbox window.
  18. (Delmesg does not expand null selections, in the interest of safety.)
  19. Clicking the right button on a message number opens it; clicking on
  20. any of the subparts of a message opens that (and also opens the
  21. message itself). Each message window has a few commands in the tag
  22. with obvious names: Reply, Delmsg, etc. "Reply" replies to the single
  23. sender of the message, "Reply all" or "Replyall" replies to everyone
  24. in the From:, To:, and CC: lines.
  25. Message parts with recognized MIME types such as image/jpeg are sent
  26. to the plumber for further dispatch. Acme Mail also listens to
  27. messages on the seemail and showmail plumbing ports, to report the
  28. arrival of new messages (highlighting the entry; right-click on the
  29. entry to open the message) and open them if you right-click on the
  30. face in the faces window.
  31. When composing a mail message or replying to a message, the first line
  32. of the text is a list of recipients of the message. To:, and CC:, and BCC:
  33. lines are interpreted in the usual way. Two other header lines are
  34. special to Acme Mail:
  35. Include: file places a copy of file in the message as an
  36. inline MIME attachment.
  37. Attach: file places a copy of file in the message as a regular
  38. MIME attachment.
  39. Acme Mail uses these conventions when replying to messages,
  40. constructing headers for the default behavior. You may edit these to
  41. change behavior. Most important, when replying to a message Mail will
  42. always Include: the original message; delete that line if you don't
  43. want to include it.
  44. If the mailbox
  45. /mail/box/$user/outgoing
  46. exists, Acme Mail will save your a copy of your outgoing messages
  47. there. Attachments are described in the copy but not included.