more efficient fountain concatenation in mailinglist
[org.ibex.mail.git] / src / org / ibex / mail / Mailbox.java
index 6905692..1baf9f0 100644 (file)
@@ -66,6 +66,7 @@ public abstract class Mailbox extends JS.Obj implements Target {
             for(Mailbox.Iterator it = iterator(q);it.next();) { dest.insert(it.cur(), it.getFlags()); it.delete(); }
         }
         public static abstract class Iterator implements Mailbox.Iterator {
+            // FIXME: NNTP spec allows us to use longs (64-bit) here
             public int     nntpNumber() { throw new MailException("not supported"); }
             public int     getFlags() { return 0; }
             public void    setFlags(int flags) { throw new MailException("not supported"); }