d9719af24dfb3a698deeb117792f721d9282e6ed
[org.ibex.mail.git] / src / org / ibex / mail / protocol / Incoming.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.mail.protocol;
6 import org.ibex.mail.*;
7 import org.ibex.mail.target.*;
8 import java.io.*;
9
10 public class Incoming {
11     protected void accept(Message m) throws IOException, MailException {
12         Transcript.transcript.accept(m);     // currently, we write all inbound messages to the transcript
13         Target.root.accept(m);
14     }
15 }