From: adam Date: Sat, 30 Oct 2004 08:45:26 +0000 (+0000) Subject: temporarily disabled checking for >1000 Received lines X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=35798183fe34351258cb3e6d3e6d6c3727258ef3;p=org.ibex.mail.git temporarily disabled checking for >1000 Received lines darcs-hash:20041030084526-5007d-8d41ea4638ca7cd2f7f6dde4ae925e7831017ec9.gz --- 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();