home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / bit / listserv / decteil / 327 < prev    next >
Encoding:
Text File  |  1992-11-14  |  1.4 KB  |  38 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!stanford.edu!bcm!convex!darwin.sura.net!paladin.american.edu!auvm!!MCCLAIN,
  3. Original_To:  JNET%"dectei-l@ubvm"
  4. Message-ID: <DECTEI-L%92111312575428@UBVM.CC.BUFFALO.EDU>
  5. Newsgroups: bit.listserv.dectei-l
  6. Date:         Thu, 12 Nov 1992 20:27:00 CST
  7. Sender:       "DEC's The Education Initiative Discussion List"
  8.               <DECTEI-L@UBVM.BITNET>
  9. From:         "Dr. John McClain,
  10.               User Services Coordinator" <MCCLAIN@TAMZEUS.BITNET>
  11. Subject:      capturing stuff with /out qualifiers
  12. Lines: 24
  13.  
  14. >Is it possible to write the MAIL directory display to file?  Please
  15. >point me to a manual, if the explanation gets convoluted.
  16. >
  17.  
  18. I often have to do this kind of stuff, especially with VAX notes. Have
  19. you ever tried to get a hardcopy of the members of a conference?  The
  20. general idea is to assign sys$output to a file, then do what you have to
  21. do.  Here is a command procedure that will do what you asked.  I don't
  22. think you will find this explicitly documented.
  23.  
  24. --john mcclain
  25.   academic computing services
  26.   texas a&m university
  27.  
  28. -------------------------------------------------
  29. $ ! define sys$output for next command
  30. $ define/user sys$output mail_listing.txt
  31. $ ! now invoke mail and do the directory
  32. $ mail
  33. select mail ! in case there are newmail messages
  34. dir
  35. exit
  36. $ exit
  37. -------------------------------------------------
  38.