From 35798183fe34351258cb3e6d3e6d6c3727258ef3 Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 30 Oct 2004 08:45:26 +0000 Subject: [PATCH] temporarily disabled checking for >1000 Received lines darcs-hash:20041030084526-5007d-8d41ea4638ca7cd2f7f6dde4ae925e7831017ec9.gz --- src/org/ibex/mail/protocol/SMTP.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/org/ibex/mail/protocol/SMTP.java b/src/org/ibex/mail/protocol/SMTP.java index 46b4c6e..0a54781 100644 --- a/src/org/ibex/mail/protocol/SMTP.java +++ b/src/org/ibex/mail/protocol/SMTP.java @@ -115,8 +115,10 @@ public class SMTP { public static void accept(Message m) throws IOException { if (m == null) { Log.warn(Outgoing.class, "attempted to accept(null)"); return; } //Log.info(SMTP.class, "queued: " + m.summary()); + /* if (m.traces.length >= 100) Log.warn(SMTP.Outgoing.class, "Message with " + m.traces.length + " trace hops; dropping\n" + m.summary()); + */ else synchronized(Outgoing.class) { spool.add(m); Outgoing.class.notify(); -- 1.7.10.4