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