compiles
[org.ibex.mail.git] / src / org / ibex / mail / protocol / Incoming.java
index 0f3adcb..fe37582 100644 (file)
@@ -5,7 +5,7 @@ import java.io.*;
 
 public class Incoming {
     protected void accept(Message m) throws IOException, MailException {
-        Mailbox.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);
     }
 }