it compiles!
[org.ibex.mail.git] / src / org / ibex / mail / protocol / Incoming.java
1 package org.ibex.mail.protocol;
2 import org.ibex.mail.*;
3 import org.ibex.mail.store.*;
4 import org.ibex.mail.target.*;
5 import java.io.*;
6
7 public class Incoming {
8
9     protected void accept(Message m) throws IOException {
10         MessageStore.transcript.add((Message.StoredMessage)m);     // currently, we write all inbound messages to the transcript
11         Target.root.accept(m);
12     }
13
14 }