lotsa stuff works
[org.ibex.mail.git] / src / org / ibex / mail / protocol / Incoming.java
index d46a75e..fe37582 100644 (file)
@@ -1,12 +1,11 @@
 package org.ibex.mail.protocol;
 import org.ibex.mail.*;
-import org.ibex.mail.store.*;
 import org.ibex.mail.target.*;
 import java.io.*;
 
 public class Incoming {
     protected void accept(Message m) throws IOException, MailException {
-        MessageStore.transcript.add(m);     // currently, we write all inbound messages to the transcript
+        Transcript.transcript.accept(m);     // currently, we write all inbound messages to the transcript
         Target.root.accept(m);
     }
 }