MAIL.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:3k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. MAIL(1)                   Minix Programmer's Manual                    MAIL(1)
  2. NAME
  3.      mail - send and receive electronic mail
  4. SYNOPSIS
  5.      mail [-dpqrv] [-f file] [user]
  6. OPTIONS
  7.      -d   Force use of the shell variable MAILER
  8.      -f   Use file instead of /usr/spool/mail/user as mailbox
  9.      -p   Print all mail and then exit
  10.      -q   Quit program if SIGINT received
  11.      -r   Reverse print order, i.e., print oldest first
  12.      -v   Verbose mode
  13. EXAMPLES
  14.      mail ast            # Send a message to ast
  15.      mail                # Read your mail
  16. DESCRIPTION
  17.      Mail is an extremely simple electronic mail program.  It can be  used  to
  18.      send  or  receive  email  on  a  single  MINIX  system,  in which case it
  19.      functions as user agent and local delivery agent. If the flag  MAILER  is
  20.      defined  in  mail.c,  it can also call a transport agent to handle remote
  21.      mail as well.  No such agent is supplied with MINIX.
  22.      When  called  by  user  with  no  arguments,  it  examines  the   mailbox
  23.      /usr/spool/mail/user,  prints one message (depending on the -r flag), and
  24.      waits for one of the following commands:
  25.         <newline>   Go to the next message
  26.         -           Print the previous message
  27.         !command    Fork off a shell and execute command
  28.         CTRL-D      Update the mailbox and quit (same as q)
  29.         d           Delete the current message and go to the next one
  30.         q           Update the mailbox and quit (same as CTRL-D)
  31.         p           Print the current message again
  32.         s [file]    Save message in the named file
  33.         x           Exit without updating the mailbox
  34.                                                                              1
  35. MAIL(1)                   Minix Programmer's Manual                    MAIL(1)
  36.      To send mail, the program is called with the name of the recipient as  an
  37.      argument.   The  mail  is sent, along with a postmark line containing the
  38.      date.  For local delivery, a  file  named  after  the  recipient  in  the
  39.      directory /usr/spool/mail must be writable.
  40.      If the directory /usr/spool/mail does not exist then the mail  is  dumped
  41.      on  the console, so that system programs have a way to notify a user on a
  42.      system that does not have a mail spool.
  43.                                                                              2