You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2004/09/11 09:39:14 UTC

svn commit: rev 45873 - in spamassassin/trunk: . lib/Mail/SpamAssassin

Author: felicity
Date: Sat Sep 11 00:39:14 2004
New Revision: 45873

Modified:
   spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm
   spamassassin/trunk/spamassassin.raw
Log:
we generally refer to ArchiveIterator 'dir' mode as maildir, but it's not, so be a little clearer about that

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm	(original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm	Sat Sep 11 00:39:14 2004
@@ -64,10 +64,10 @@
 
 =head1 DESCRIPTION
 
-The Mail::SpamAssassin::ArchiveIterator module will go through a set of mbox
-files, maildir directories, and mbx directories and generate a list of
-messages.  It will then call the wanted and results functions appropriately
-per message.
+The Mail::SpamAssassin::ArchiveIterator module will go through a set
+of mbox files, mbx files, and directories (with a single message per
+file) and generate a list of messages.  It will then call the wanted
+and results functions appropriately per message.
 
 =head1 METHODS
 
@@ -219,8 +219,8 @@
 
 =item format
 
-Specifies the format of the raw_location.  C<dir> is a maildir formatted
-directory (one message per file), C<file> a file with a single message,
+Specifies the format of the raw_location.  C<dir> is a directory whose
+files are individual messages, C<file> a file with a single message,
 C<mbox> an mbox formatted file, or C<mbx> for an mbx formatted directory.
 
 C<detect> can also be used; assumes C<file> for STDIN and anything that is not

Modified: spamassassin/trunk/spamassassin.raw
==============================================================================
--- spamassassin/trunk/spamassassin.raw	(original)
+++ spamassassin/trunk/spamassassin.raw	Sat Sep 11 00:39:14 2004
@@ -507,14 +507,13 @@
 The default tagging operations that take place are detailed in L</TAGGING>.
 
 By default, message(s) are read in from STDIN (< I<mailmessage>), or
-from specified files and maildir-formatted directories (I<path> ...)
-STDIN and files are assumed to be in I<file> format, with a single
-message per file.  Directories are assumed to be in I<maildir> format
-where each file in each directory contains only one message
-(directories are not recursed and filenames containing whitespace or
-beginning with "." or "," are skipped).  The options I<--mbox> and
-I<--mbx> can override the assumed format, see the appropriate OPTION
-information below.
+from specified files and directories (I<path> ...)  STDIN and files
+are assumed to be in I<file> format, with a single message per file.
+Directories are assumed to be in a format where each file in the directory
+contains only one message (directories are not recursed and filenames
+containing whitespace or beginning with "." or "," are skipped).
+The options I<--mbox> and I<--mbx> can override the assumed format,
+see the appropriate OPTION information below.
 
 =head1 OPTIONS