1@(#)	sendmail.hf	3.2	11/21/81
2smtp	Commands:
3smtp		HELO	MAIL	RCPT	DATA	RSET
4smtp		NOOP	QUIT	HELP	VRFY
5smtp	For more info use "HELP <topic>".
6help	HELP [ <topic> ]
7help		The HELP command gives help info.
8helo	HELO <hostname>
9helo		Introduce yourself.  I am a boor, so I really don't
10helo		care if you do.
11mail	MAIL FROM: <sender>
12mail		Specifies the sender.
13rcpt	RCPT TO: <recipient>
14rcpt		Specifies the recipient.  Can be used any number of times.
15data	DATA
16data		Following text is collected as the message.
17data		End with a single dot.
18rset	RSET
19rset		Resets the system -- same as QUIT in this implementation.
20quit	QUIT
21quit		Exit sendmail
22vrfy	VRFY <recipient>
23vrfy		Not implemented to protocol.  Gives some sexy
24vrfy		information.
25noop	NOOP
26noop		Do nothing.
27send	SEND FROM: <sender>
28send		replaces the MAIL command, and can be used to send
29send		directly to a users terminal.  Not supported in this
30send		implementation.
31soml	SOML FROM: <sender>
32soml		Send or mail.  If the user is logged in, send directly,
33soml		otherwise mail.  Not supported in this implementation.
34saml	SAML FROM: <sender>
35saml		Send and mail.  Send directly to the user's terminal,
36saml		and also mail a letter.  Not supported in this
37saml		implementation.
38