home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / telecom / uucp_442 / uucp2 / man / splitmbox < prev    next >
Text File  |  1990-12-14  |  1KB  |  41 lines

  1.  
  2. NAME
  3.     SplitMbox
  4.  
  5. SYNOPSIS
  6.     SplitMbox outTemplate bytesPerFile inTemplate
  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.
  18.  
  19.     What generally happens is that your MBOX file slowly grows
  20.     larger and larger.  At some point, so dmail can access it
  21.     reasonably fast, you rename it and start a new mbox.  Eventually
  22.     you end up with something that might look like this:
  23.  
  24.         mbox.001        423433
  25.         mbox.002        253933
  26.         mbox.003        983943
  27.  
  28.     SplitMbox will take a sequence of files starting with
  29.     <inTemplate>.001 and break them up on item boundries
  30.     to output files starting with <outTemplate>.001 ... for
  31.     example,
  32.  
  33.         SplitMbox tmp:out 200000 mbox
  34.  
  35.     SplitMbox will take the files mbox.001, mbox.002, and mbox.003
  36.     (it goes on until it can find no more files), and outputs
  37.     tmp:out.001, tmp:out.002, tmp:out.003, tmp:out.004, etc....
  38.     where the tmp:out#? files are on the order of 200KBytes each,
  39.     allowing for easy compression and storage to floppy.
  40.  
  41.