home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / os / vms / 21998 < prev    next >
Encoding:
Text File  |  1993-01-27  |  3.1 KB  |  92 lines

  1. Newsgroups: comp.os.vms
  2. Path: sparky!uunet!inmos!titan.inmos.co.uk!odonovan
  3. From: odonovan@inmos.co.uk (Brian O'Donovan)
  4. Subject: Re: SENDing an entire MAIL FOLDER ?
  5. Message-ID: <1993Jan27.092209.21671@titan.inmos.co.uk>
  6. Sender: news@titan.inmos.co.uk
  7. Reply-To: odonovan@inmos.co.uk (Brian O'Donovan)
  8. Organization: INMOS Limited, Bristol, UK.
  9. References: <01GTXLEOVOIQ9GVN23@SNYBUFVA.BITNET> <1k2kohINNs62@gap.caltech.edu>
  10. Date: Wed, 27 Jan 1993 09:22:09 GMT
  11. Lines: 79
  12.  
  13. In article <1k2kohINNs62@gap.caltech.edu> carl@SOL1.GPS.CALTECH.EDU writes:
  14. >In article <01GTXLEOVOIQ9GVN23@SNYBUFVA.BITNET>, TARKA10@SNYBUFVA.BITNET (Mark Tarka) writes:
  15. >>I CHECKED:
  16. >>On-line help
  17. >>On-line documentation
  18. >>Local comp center staff
  19. >>
  20. >>Can I send all 30 messages in a single mail folder to a user at
  21. >>another node, and if so, how?
  22. >>
  23.  
  24. Try this
  25.  
  26.   Create a new directory (say [.MAIL_TO_GO]) then do
  27.   $MAIL
  28.   SELECT folder
  29.   COPY/ALL newfolder [.MAIL_TO_GO]file
  30.     (mail will tell you that [.MAIL_TO_GO]file does not exist and ask
  31.      you if you wish to create it.  Tell it Y.)
  32.   EXIT
  33.  
  34.   [.MAIL_TO_GO]  will now contain file.MAI and possibly a load of
  35.   MAIL$<mumble>.MAI files.  If you were to do a SET FILE [.mail_to_go]file
  36.   from within mail, and a DIR/FOL you would see the folder `newfolder'.
  37.   Now you need to send the whole package of mail files somewhere.
  38.  
  39.   Create a saveset of all the files in [.MAIL_TO_GO] and send the
  40.   saveset by mail.   ... but it's not as simple as that ...
  41.  
  42.   A saveset cannot be mailed as-is (32256 byte record too long...) so ...
  43.  
  44.   compress the saveset using Zip.  It has a mode which preserves VMS file
  45.   attributes:
  46.  
  47.     ZIP "-V" file.zip file.sav
  48.  
  49.   uuencode the zip file
  50.  
  51.     uuencode file.zip file_zip.uue
  52.  
  53.   now MAIL the file.uue file.  If it is enormous youmay want to split
  54.   it into chumnks (e.g. with VMS_SHARE).
  55.  
  56.   at the other end it will 
  57.   need to be reassembled, uudecoded, unzipped and then all the mail files 
  58.   extracted.
  59.  
  60.   Once the mail files have been extracted e.g. into a [.MAIL_TO_GO] directory
  61.   at the receiving end; the recipient can go into mail and say
  62.     SET FILE [.MAIL_TO_GO]file
  63.     SELECT folder
  64.   and see all the messages
  65.  
  66.   If they then want to move the messages to a folder and/or file within their
  67.   usual mail directory they can do that.  Anyway, the messages should still
  68.   look the same as when you recieved them.
  69.  
  70.   I hope this is of some help.  Please excudse (!) the typos.
  71.  
  72.     Cheers,
  73.  
  74.       'o-Dzin
  75.  
  76.   PS: I've just thought, all this assumes that the recipient is a VMS
  77.   system.  If that's not the case than I've no idea... 
  78.  
  79.   PPS:  If you don't have Zip, UUencode and Vms_Share I can point you
  80.   in the general direction of Hunter Goatley, who has such things on
  81.   his file server.
  82.  
  83.   PPPS:  I've not done this, at least not until now.  I've tested it
  84.   and it works.  You never know, though, there might be a simpler
  85.   method...
  86.  
  87. --
  88. [ 'o-Dzin Tridral / Brian O'Donovan / isodonovan@isnet.inmos.co.uk   ]
  89. [ Inmos Ltd, Newport, NP9 1YJ, UK.  / 0633-810121 X384               ]
  90. [ / / / / e-mail if you would like info. on Tibetan Buddhist \ \ \ \ ]
  91. [ \ \ \ \ \ \ groups and events in the UK, USA, Germany. / / / / / / ]
  92.