r3569 - in /packages/libemail-folder-perl/branches/upstream/current: Changes MANIFEST META.yml README lib/Email/Folder.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Sep 2 17:03:23 UTC 2006


Author: gregoa-guest
Date: Sat Sep  2 17:03:22 2006
New Revision: 3569

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3569
Log:
Load /tmp/tmp.qQsEq18610/libemail-folder-perl-0.852 into
packages/libemail-folder-perl/branches/upstream/current.

Added:
    packages/libemail-folder-perl/branches/upstream/current/README
Modified:
    packages/libemail-folder-perl/branches/upstream/current/Changes
    packages/libemail-folder-perl/branches/upstream/current/MANIFEST
    packages/libemail-folder-perl/branches/upstream/current/META.yml
    packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm

Modified: packages/libemail-folder-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/Changes?rev=3569&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/Changes (original)
+++ packages/libemail-folder-perl/branches/upstream/current/Changes Sat Sep  2 17:03:22 2006
@@ -1,3 +1,6 @@
+0.852     2006-08-22
+     * README
+
 0.851     2006-08-01
      * use ExtUtils::MakeMaker, to standardize PEP
      * add pod coverage tests and improve coverage

Modified: packages/libemail-folder-perl/branches/upstream/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/MANIFEST?rev=3569&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/MANIFEST (original)
+++ packages/libemail-folder-perl/branches/upstream/current/MANIFEST Sat Sep  2 17:03:22 2006
@@ -5,6 +5,7 @@
 lib/Email/Folder/Mbox.pm
 lib/Email/Folder/MH.pm
 lib/Email/Folder/Reader.pm
+README
 MANIFEST
 Makefile.PL
 TODO

Modified: packages/libemail-folder-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/META.yml?rev=3569&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/META.yml (original)
+++ packages/libemail-folder-perl/branches/upstream/current/META.yml Sat Sep  2 17:03:22 2006
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Email-Folder
-version:      0.851
+version:      0.852
 version_from: lib/Email/Folder.pm
 installdirs:  site
 requires:

Added: packages/libemail-folder-perl/branches/upstream/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/README?rev=3569&op=file
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/README (added)
+++ packages/libemail-folder-perl/branches/upstream/current/README Sat Sep  2 17:03:22 2006
@@ -1,0 +1,66 @@
+NAME
+    Email::Folder - read all the messages from a folder as Email::Simple
+    objects.
+
+SYNOPSIS
+     use Email::Folder;
+
+     my $folder = Email::Folder->new("some_file");
+
+     print join "\n", map { $_->header("Subject") } $folder->messages;
+
+METHODS
+  new($folder, %options)
+    Takes the name of a folder, and a hash of options
+
+    If a 'reader' option is passed in then that is used as the class to read
+    in messages with.
+
+  messages
+    Returns a list containing all of the messages in the folder. Can only be
+    called once as it drains the iterator.
+
+  next_message
+    acts as an iterator. reads the next message from a folder. returns false
+    at the end of the folder
+
+  bless_message($message)
+    Takes a raw RFC822 message and blesses it into a class.
+
+    By default this is an Email::Simple object but can easily be overriden
+    in a subclass.
+
+    For example, this simple subclass just returns the raw rfc822 messages,
+    and exposes the speed of the parser.
+
+     package Email::RawFolder;
+     use base 'Email::Folder';
+     sub bless_message { $_[1] };
+     1;
+
+  reader
+    read-only accessor to the underlying Email::Reader subclass instance
+
+AUTHORS
+    Simon Wistow <simon at thegestalt.org>
+
+    Richard Clamp <richardc at unixbeard.net>
+
+COPYING
+    Copyright 2006, Simon Wistow
+
+    Distributed under the same terms as Perl itself.
+
+    This software is under no warranty and will probably ruin your life,
+    kill your friends, burn your house and bring about the doobie brothers.
+
+SUPPORT
+    This module is part of the Perl Email Project - http://pep.kwiki.org/
+
+    There is a mailing list at pep at perl.org (subscribe at
+    pep-subscribe at perl.org) and an archive available at
+    http://nntp.perl.org/group/pep.php
+
+SEE ALSO
+    Email::LocalDelivery, Email::FolderType, Email::Simple
+

Modified: packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm?rev=3569&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm (original)
+++ packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm Sat Sep  2 17:03:22 2006
@@ -5,7 +5,7 @@
 use Email::FolderType qw/folder_type/;
 
 use vars qw($VERSION);
-$VERSION = "0.851";
+$VERSION = "0.852";
 
 =head1 NAME
 




More information about the Pkg-perl-cvs-commits mailing list