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 2006/12/04 21:43:30 UTC

svn commit: r482346 - /spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm

Author: felicity
Date: Mon Dec  4 12:43:28 2006
New Revision: 482346

URL: http://svn.apache.org/viewvc?view=rev&rev=482346
Log:
missed some mail_open() calls. :(

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm?view=diff&rev=482346&r1=482345&r2=482346
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/ArchiveIterator.pm Mon Dec  4 12:43:28 2006
@@ -665,7 +665,7 @@
   if ($self->{determine_receive_date}) {
     unless (defined $AICache and $date = $AICache->check($mail)) {
       my $header;
-      if (!mail_open($mail)) {
+      if (!_mail_open($mail)) {
         $self->{access_problem} = 1;
         return;
       }
@@ -736,7 +736,7 @@
     }
 
     unless ($count) {
-      if (!mail_open($file)) {
+      if (!_mail_open($file)) {
         $self->{access_problem} = 1;
 	next;
       }
@@ -842,7 +842,7 @@
     }
 
     unless ($count) {
-      if (!mail_open($file)) {
+      if (!_mail_open($file)) {
 	$self->{access_problem} = 1;
         next;
       }