add mailbox acls, further separate Mailbox and MailboxTree
[org.ibex.mail.git] / src / org / ibex / mail / NNTP.java
index d9f6d20..f5c9fef 100644 (file)
@@ -97,7 +97,7 @@ public class NNTP {
             String[] s = who.children();
             for(int i=0; i<s.length; i++) {
                 v.addElement(new Group(prefix + s[i], true, 0, 0, 0)); // FIXME numbers
-                Group[] g2 = list(who.slash(s[i], false).getMailbox(), prefix + s[i] + ".");
+                Group[] g2 = list(who.slash(s[i], false), prefix + s[i] + ".");
                 for(int j=0; j<g2.length; j++) v.addElement(g2[j]);
             }
             Group[] ret = new Group[v.size()];