You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by km...@apache.org on 2015/01/12 20:08:30 UTC

svn commit: r1651169 - /spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm

Author: kmcgrail
Date: Mon Jan 12 19:08:29 2015
New Revision: 1651169

URL: http://svn.apache.org/r1651169
Log:
small change to error message for plugins to let people know about Check plugin being mandatory

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

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm?rev=1651169&r1=1651168&r2=1651169&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm Mon Jan 12 19:08:29 2015
@@ -389,7 +389,8 @@ sub check_timed {
     # did anything happen?  if not, this is fatal
     if (!$self->{main}->have_plugin("check_main")) {
       die "check: no loaded plugin implements 'check_main': cannot scan!\n".
-            "Check the necessary '.pre' files are in the config directory.\n";
+            "Check that the necessary '.pre' files are in the config directory.\n".
+              "At a minimum, v320.pre loads the Check plugin which is required.\n";
     }
   }