X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fmail%2FMailbox.java;h=1baf9f09369ed62f40906e28a320aff7d04ecef2;hb=3847c4222826b39ba205b5fedec24351cff15f5f;hp=6905692d60c48a1fb7e69f180ce8ff5f394ce083;hpb=23e39782952ae7c2e7a15eb255ba21313d0370ad;p=org.ibex.mail.git diff --git a/src/org/ibex/mail/Mailbox.java b/src/org/ibex/mail/Mailbox.java index 6905692..1baf9f0 100644 --- a/src/org/ibex/mail/Mailbox.java +++ b/src/org/ibex/mail/Mailbox.java @@ -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"); }