home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / comms / network / amigauuc.lha / AmigaUUCP / man / SplitMBox < prev    next >
Text File  |  1991-02-03  |  2KB  |  51 lines

  1.  
  2. NAME
  3.     SplitMbox
  4.  
  5. SYNOPSIS
  6.     SplitMbox [-c] outTemplate bytesPerFile inTemplate [outstart# [instart#]]
  7.  
  8. DESCRIPTION
  9.     SplitMbox is a manual utility useful for those people (like me)
  10.     who archive all their email.  I archive my email by having an
  11.     Alias append mail to my user name, dillon, to a file called
  12.     'mbox', in addition to sticking it in my 'dillon' mail box.
  13.  
  14.     I then set up dmail such that it does not try to transfer
  15.     read items into the mbox (because the mail has already been
  16.     stuck there by the alias).  I also set the dmail 'archive'
  17.     variable so any mail I send out is also archived to the same
  18.     mbox.
  19.  
  20.     What generally happens is that your MBOX file slowly grows
  21.     larger and larger.  At some point, so dmail can access it
  22.     reasonably fast, you rename it and start a new mbox.  Eventually
  23.     you end up with something that might look like this:
  24.  
  25.         mbox.001        423433
  26.         mbox.002        253933
  27.         mbox.003        983943
  28.  
  29.     SplitMbox will take a sequence of files starting with
  30.     <inTemplate>.001 and break them up on item boundries
  31.     to output files starting with <outTemplate>.001 ... for
  32.     example,
  33.  
  34.         SplitMbox tmp:out 200000 mbox
  35.  
  36.     SplitMbox will take the files mbox.001, mbox.002, and mbox.003
  37.     (it goes on until it can find no more files), and outputs
  38.     tmp:out.001, tmp:out.002, tmp:out.003, tmp:out.004, etc....
  39.     where the tmp:out#? files are on the order of 200KBytes each,
  40.     allowing for easy compression and storage to floppy.
  41.  
  42.     You can specify additional arguments to set the starting number
  43.     for the input template (default is 1) and starting number for
  44.     the output template (default is 1).
  45.  
  46.     Additionally, if you give the -c option SPLITMBOX will automatically
  47.     run COMPRESS on every output file closed out, leaving the last one
  48.     (that didn't reach the byte limit) uncompressed.  You can then
  49.     copy the archived files to floppy for permanent storage.
  50.  
  51.