diff src/context.cpp @ 203:92a5c866bdfa

Verify from/to pairs even if they might be explicitly whitelisted. Document DCC greylisting and bulk detection usage. Fix DCC bulk thresholds of many. Update spec file for fedora packaging.
author Carl Byington <carl@five-ten-sg.com>
date Tue, 04 Mar 2008 21:42:51 -0800
parents 797299e9fffc
children 4db1457cd11a
line wrap: on
line diff
--- a/src/context.cpp	Sat Feb 02 12:32:59 2008 -0800
+++ b/src/context.cpp	Tue Mar 04 21:42:51 2008 -0800
@@ -937,7 +937,7 @@
         msg = string(buf);
         return false;
     }
-    if (dcc_bulk_threshold && (bulk > dcc_bulk_threshold)) {
+    if (dcc_bulk_threshold && (bulk >= dcc_bulk_threshold)) {
         char buf[maxlen];
         snprintf(buf, sizeof(buf), "Mail rejected - dcc score %d", bulk);
         msg = string(buf);