You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by mm...@apache.org on 2009/08/29 02:44:39 UTC

svn commit: r809077 - /spamassassin/trunk/spamc/libspamc.c

Author: mmartinec
Date: Sat Aug 29 00:44:38 2009
New Revision: 809077

URL: http://svn.apache.org/viewvc?rev=809077&view=rev
Log:
Bug 5325: syslog severity level in spamc/libspamc.c for
max message size (changed LOG_ERR into LOG_NOTICE for the
message: "skipped message, greater than max message size")

Modified:
    spamassassin/trunk/spamc/libspamc.c

Modified: spamassassin/trunk/spamc/libspamc.c
URL: http://svn.apache.org/viewvc/spamassassin/trunk/spamc/libspamc.c?rev=809077&r1=809076&r2=809077&view=diff
==============================================================================
--- spamassassin/trunk/spamc/libspamc.c (original)
+++ spamassassin/trunk/spamc/libspamc.c Sat Aug 29 00:44:38 2009
@@ -655,7 +655,7 @@
     m->type = MESSAGE_ERROR;
     if (m->raw_len > (int) m->max_len)
     {
-        libspamc_log(m->priv->flags, LOG_ERR,
+        libspamc_log(m->priv->flags, LOG_NOTICE,
                 "skipped message, greater than max message size (%d bytes)",
                 m->max_len);
 	return EX_TOOBIG;