default implementation of recent()
[org.ibex.mail.git] / src / org / ibex / mail / target / FileBasedMailbox.java
index e27d804..8d44198 100644 (file)
@@ -238,6 +238,7 @@ public class FileBasedMailbox extends Mailbox.Default {
         public boolean done() { return cur >= cache.size(); }
         public boolean next() { cur++; return !done(); }
         public boolean seen() { return done() ? false : entry().seen(); }
+        public boolean recent() { return false; }
         public int num() { return cur+1; }  // EUDORA insists that message numbers start at 1, not 0
         public int uid() { return done() ? -1 : entry().uid; }
         public void delete() { prevayler.execute(entry().delete(file())); }