You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by du...@apache.org on 2004/02/25 15:57:41 UTC

svn commit: rev 6855 - incubator/spamassassin/trunk/masses

Author: duncf
Date: Wed Feb 25 06:57:41 2004
New Revision: 6855

Modified:
   incubator/spamassassin/trunk/masses/mass-check
Log:
mass-check should be more verbose when dying if Time::ParseDate not installed

Modified: incubator/spamassassin/trunk/masses/mass-check
==============================================================================
--- incubator/spamassassin/trunk/masses/mass-check	(original)
+++ incubator/spamassassin/trunk/masses/mass-check	Wed Feb 25 06:57:41 2004
@@ -160,7 +160,7 @@
     $opt_after = Time::ParseDate::parsedate($opt_after, GMT => 1, PREFER_PAST => 1);
   }
   else { 
-    die;
+    die "You need Time::ParseDate if you use the --after option.";
   }
 }