fe375829ef8fc98fc53c4931a8c7747246a2bcdf
[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.target.*;
4 import java.io.*;
5
6 public class Incoming {
7     protected void accept(Message m) throws IOException, MailException {
8         Transcript.transcript.accept(m);     // currently, we write all inbound messages to the transcript
9         Target.root.accept(m);
10     }
11 }