SMTPGVRcvr.mesa
The server must provide that part of the Grapevine Mailserver interface which accepts mail items from other Grapevine Mailservers. Rather than process the item on the fly, it is stored verbatim to keep from tying up the Grapevine server, and is subsequently processed. Because Grapevine mail is more complex than SMTP mail, some information is lost when going from Grapevine to SMTP. However, because this mail may be forwarded to another Grapevine server or returned to the sender, this additional information is not thrown away until delivery. The public procs provide the ability to start and stop the Grapevine reception demons.
Last Edited by: HGM, March 23, 1984 3:18:16 am PST
Last Edited by: DCraft, December 21, 1983 8:43 pm
Last Edited by: Taft, January 3, 1984 2:19 pm
DIRECTORY
Rope USING [ROPE];
SMTPGVRcvr: CEDAR DEFINITIONS = BEGIN
ROPE: TYPE = Rope.ROPE;
Error: ERROR [reason: ROPE];
Initialize: PROC;
Finalize: PROC;
END.