# $Id: Changelog,v 1.25 2001/11/28 13:54:13 parkerpine Exp $

v0.24 (Wed Nov 28 14:48:05 CET 2001)
    + mailboxes with DOSish line-endings (\015\012)
      can now also be parsed
      (reported by Bill Moseley <moseley@hank.org>)

v0.23 (Mon Nov 26 12:07:41 CET 2001)
    + bugfix in MboxParser.pm, last line of message sometimes 
      ommited
      (reported by Christian Wendt <christian.wendt@is-energy.de>)
    + decoding of qp-encoded filenames for
      store_(all_)attachement(s)

v0.22 (Tue Sep 20 13:23:38 CEST 2001)
    + new get_field method that returns a raw headerfield,
      so that even the "Received"-line is no longer lost
      (Kenn Frankel <kfrankel@maxstr.com>)

v0.21 (Sun Sep 9 10:37:46 CEST 2001)
    + decoding is now pretty complete 
      (whole header, body, quotes, signature)
    + split up the documentation to the respective modules
    + $obj->error and $obj->log is now correctly reseted on
      each method invokation

v0.20 (Sat Sep 8 10:03:23 CEST 2001)
    + Mail::MboxParser::new() can now read from virtually 
      anything (filename, filehandle, scalar/array-ref)
    + introduction of named parameters coming as key/value pairs
    + new class: Mail::MboxParser::Mail::Convertable
    + decoding of header-fields and body

v0.17 (Sat Sep  1 08:36:59 CEST 2001)
	+ new Mail::MboxParser::Mail::Body::quotes() method
	+ some corrections in the PODs

v0.16 (Tue Aug 28 11:56:17 CEST 2001)
	+ 'make test' will no longer fail if URI::Find is not installed

v0.15 (Mon Aug 27 08:30:18 CEST 2001)
	+ an important change in indexing of MIME-parts:
	  the message itself is now the entity with the index 0, 
	  as it should be.
	  CHECK your scripts if you did a lot of MIME-stuff so that
	  they reflect the changes
	+ new class Mail::MboxParser::Mail::Body with methods for 
	  retrieving the signature and URLs from text
	
v0.14 (Fri Aug 24 12:23:36 CEST 2001):
	+ added an AUTOLOADer for Mail::MboxParser::Mail which will 
	  usually care that any methods inherited from MIME::Entity
	  work (mostly) in the expected way
	  nice side-effect: saves memory
	+ overloading of " " for Mail::MboxParser::Mail
	+ fixed some factually wrong documentation
	+ finally a MANIFEST in the package

v0.13 (Sat Aug 18 11:04:54 CEST 2001):
	+ new to()-equivalent cc()
	+ id() now also resets $mail->error as it should do
	+ extended documentation for Mail::MboxParser::Mail
	+ made Mail::MboxParser-docs more eye-friendly

v0.12 (Fri Aug 17 08:35:15 CEST 2001):
	+ new base-class Mail::MboxParser::Base
	+ new methods $obj->error, $obj->log
	+ Mail::MboxParser::Mail now extends MIME::Entity so
	  $mail->effective_type and stuff should work
	+ eventually using carp/croak instead of warn/die
	+ removed a very unpleasant memory-leak which did not allow
	  for a proper destruction of Mail::MboxParser objects,
	  happened when doing something like:
	  @mbs = map { Mail::MboxParser->new($_) } @mboxes;
	  undef $mbs[0]; # etc...

v0.11 (Mon Aug 13 17:52:22 CEST 2001):
	+ new arguments for store_attachement and store_all_attachements
	  so that filenames for saving can be dynamically assigned
	  (suggestion by Angeline Koh <abuu@home.com>)
	+ Mail::Box::SpamDetector class included but not yet properly working,
	  hence not documented either

v0.10 (Sun Aug  5 12:24:56 CEST 2001):
	+ new method Mail::MboxParser::Mail->to
	+ additional tests for the above

v0.09 (Sat Aug  4 13:58:47 CEST 2001):
	+ multi-line header-fields are now correctly reckognized
	  (Kenn Frankel <kfrankel@maxstr.com>)

v0.08 (Wed Aug  1 09:58:18 CEST 2001):
	+ $self->{ENTITY} now destroys itself once called,
	  reduces mem-usage when MIME is processed
	+ new test-suits
	+ updated PODs

v0.07 (Sun Jul 29 11:37:43 CEST 2001):
    + as the MIME stuff, headers are now only parsed
      on demand (40% less memory, 25% quicker under normal conditions)

v0.06 (Sat Jul 28 09:46:35 CEST 2001):
    + on-demand parsing of entities by using closures
      -> performance-gain of at least 900%
    + rewinding of mailbox-filehandle, 
      so a second call to get_messages will work

v0.05 (Fri Jul 27 20:28:04 CEST 2001):
    + rework of the pattern-matching,
      should now be minimally quicker
    + nmsgs now compliant to RFC 822
    + added little script isspam (undocumented)
    + this time the correct $VERSION !!

v0.04 (Mon Jul 23 17:52:29 CEST 2001):
    + fixed wrong parsing of header lines if line contains a colon
    + increased reliability of get_entity_body

v0.03 (Thu Jul 19 15:09:18 CEST 2001):
    + $mail->{HEADER} returning a string broke everything, fixed
    + added tests on install

v0.02 (Fri Jul  6 08:04:34 CEST 2001):
    + $mail->{HEADER} now returns a string
    + eg-directory included in the package
    + now works on Perl >= 5.004

v0.01 (Thu Jul  5 08:19:40 CEST 2001):
    + upload to CPAN