2fb68eb1763909446a9f073f26910aab571f79b6
[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         FileSystem.transcript.add(m);     // currently, we write all inbound messages to the transcript
9         Target.root.accept(m);
10     }
11 }