temporarily disabled checking for >1000 Received lines
authoradam <adam@megacz.com>
Sat, 30 Oct 2004 08:45:26 +0000 (08:45 +0000)
committeradam <adam@megacz.com>
Sat, 30 Oct 2004 08:45:26 +0000 (08:45 +0000)
darcs-hash:20041030084526-5007d-8d41ea4638ca7cd2f7f6dde4ae925e7831017ec9.gz

src/org/ibex/mail/protocol/SMTP.java

index 46b4c6e..0a54781 100644 (file)
@@ -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();