home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / bit / listserv / ibmmain / 2840 < prev    next >
Encoding:
Text File  |  1992-12-13  |  1.7 KB  |  41 lines

  1. Newsgroups: bit.listserv.ibm-main
  2. Path: sparky!uunet!uvaarpa!darwin.sura.net!jvnc.net!yale.edu!spool.mu.edu!uwm.edu!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!csn!stortek!sanitas!pg
  3. From: pg@sanitas.stortek.com (Paul Gilmartin)
  4. Subject: Re: format of outgoing mail to CMS mailer
  5. Message-ID: <1992Dec13.153236.14816@stortek.com>
  6. Sender: usenet@stortek.com
  7. Nntp-Posting-Host: sanitas.stortek.com
  8. Organization: Storage Technology Corp.
  9. X-Newsreader: TIN [version 1.1 PL7]
  10. References: <1992Dec13.030459.3371@mnemosyne.cs.du.edu>
  11. Date: Sun, 13 Dec 1992 15:32:36 GMT
  12. Lines: 27
  13.  
  14. Andrew LaRoy (alaroy@nyx.cs.du.edu) wrote:
  15. : I am attempting to patch together a mail handler for our vm/cms.  I've got
  16.     [ ... ] 
  17. : This rases two problems.  First is that I am not able to find ANYTHING
  18. : about what format the mailer wants the mail in.  If anyone out there has
  19. : an idea / documentation, I would greatly appreciate it.  Our cms front end
  20. : is Ricemail, in case that makes any difference.
  21.  
  22. If your CMS back end is VM/TCPIP (5735-FAL), then
  23. This is a programming interface documented in SC31-6084 12.1.4.1, the
  24. VM/TCPIP Programmer's reference.  The file must be formatted with an
  25. SMTP header (described in RFC 821) and an Internet Text Message header
  26. (described in RFC 822).  The RFCs are available by FTP or by Mail from
  27. service@nic.ddn.mil.
  28.  
  29. : Second, what is the basic algorythm for a sf * outmail mailer in rexx. 
  30. : And why can't cms take an sf * outmail in the first place.  Most other
  31. : OS's I've worked with are a LOT better about wildcards tham CMS.
  32.  
  33. /* Sigh.  Ain't it the truth. */
  34. 'LISTFILE * (STACK'
  35. do while queued()>0
  36.     parse pull FN FT FM .
  37.     'EXEC SENDFILE' FN FT FM 'TO' outmail;  end
  38. /* Hammer and file to fit.  At least bypass the LISTFILE header.  :-) */
  39.  
  40. -- gil
  41.