@@ -0,0 +1,32 @@
+--- qmailmrtg7.c.orig 2012-01-21 20:06:05.119092845 +0100
++++ qmailmrtg7.c 2012-01-21 20:30:31.381334083 +0100
+@@ -255,14 +255,20 @@
+ case 'S':
+ if ((tmpstr1 = strstr(TmpBuf, "identified spam"))!=NULL) {
+ ++tspam;
++ } else if ((tmpstr1 = strstr(TmpBuf, "Passwed SPAMMY"))!=NULL) {
++ ++tspam;
+ } else if ((tmpstr1 = strstr(TmpBuf, "clean message"))!=NULL) {
+ ++tclean;
++ } else if ((tmpstr1 = strstr(TmpBuf, "Passed CLEAN"))!=NULL) {
++ ++tclean;
+ }
+ break;
+
+ case 'C':
+ if ((tmpstr1 = strstr(TmpBuf, "FOUND"))!=NULL) {
+ ++cfound;
++ } else if ((tmpstr1 = strstr(TmpBuf, "INFECTED"))!=NULL) {
++ ++cfound;
+ } else if ((tmpstr1 = strstr(TmpBuf, "ERROR"))!=NULL) {
+ ++cerror;
+ }
+@@ -287,6 +293,8 @@
+ ++tdeny;
+ } else if ((tmpstr1 = strstr(TmpBuf, " rblsmtpd:"))!=NULL) {
+ ++tdeny;
++ } else if ((tmpstr1 = strstr(TmpBuf, " rblspp: "))!=NULL) {
++ ++tdeny;
+ }
+ break;
+
|