From: arjen Date: Wed, 21 Nov 2007 15:14:26 +0000 (+0000) Subject: Removed debug output. X-Git-Tag: V0_0_11~8 X-Git-Url: http://www.andromeda.nl/gitweb/?p=gnucomo.git;a=commitdiff_plain;h=d3f04229039fab0fa588183bbbbb49f730cb3ed1 Removed debug output. --- diff --git a/src/gcm_input/spamdetect.cpp b/src/gcm_input/spamdetect.cpp index 5f55790..8ee5621 100644 --- a/src/gcm_input/spamdetect.cpp +++ b/src/gcm_input/spamdetect.cpp @@ -7,7 +7,7 @@ *********************** ** FILE NAME : spamdetect.cpp ** SYSTEM NAME : Gnucomo - Gnu Computer Monitoring -** VERSION NUMBER : $Revision: 1.1 $ +** VERSION NUMBER : $Revision: 1.2 $ ** ** DESCRIPTION : ** @@ -25,14 +25,17 @@ /***************************** $Log: spamdetect.cpp,v $ - Revision 1.1 2007-11-14 16:20:05 arjen + Revision 1.2 2007-11-21 15:14:26 arjen + Removed debug output. + + Revision 1.1 2007/11/14 16:20:05 arjen New program: spamdetect. Expirimental utility to log manually reported spam and have Gnucomo detect the spammer's IP address. *****************************/ -static const char *RCSID = "$Id: spamdetect.cpp,v 1.1 2007-11-14 16:20:05 arjen Exp $"; +static const char *RCSID = "$Id: spamdetect.cpp,v 1.2 2007-11-21 15:14:26 arjen Exp $"; #include #include @@ -58,14 +61,12 @@ int main(int argc, char *argv[]) while (std::cin >> line) { - std::cout << line << "\n"; switch (state) { case 0: if (line == fwd_header) { state = 1; - std::cout << "Forward header detected.\n"; } break; @@ -75,34 +76,28 @@ int main(int argc, char *argv[]) { header = line; state = 2; - std::cout << "(1)Header = " << header << "\n"; } break; case 2: if (line == regex("^[^ ]+: ")) { - std::cout << "Logging " << header << "\n"; syslog(LOG_WARNING, "%s", (char *)header); header = ""; state = 1; - std::cout << "Next header.\n"; if (line == received || line == from || line == returnpath) { header = line; state = 2; - std::cout << "(1)Header = " << header << "\n"; } } else if (line == String("")) { - std::cout << "End of headers detected.\n"; state = 3; } else { header += " "; header += line; - std::cout << "(2)Header = " << header << "\n"; } } }