almost there
[org.ibex.mail.git] / src / org / ibex / mail / target / FileBasedMailbox.java
index 2373406..fef694e 100644 (file)
@@ -107,8 +107,7 @@ public class FileBasedMailbox extends Mailbox.Default {
         public Message cur() {
             try {
                 File file = new File(path + File.separatorChar + names[cur]);
-                return new Message(/* FIXME */ null, /* FIXME */ new Address[] { },
-                                   new LineReader(new InputStreamReader(new FileInputStream(file))));
+                return new Message(null, null, new LineReader(new InputStreamReader(new FileInputStream(file))));
             } catch (IOException e) { throw new MailException.IOException(e); }
         }
         public boolean next() {