added tons of stuff, including js support
[org.ibex.mail.git] / src / org / ibex / mail / protocol / Incoming.java
1 package org.ibex.mail.protocol;
2
3 public class Incoming {
4
5     protected void accept(Message m) throws IOException {
6         // currently, we write all inbound messages to the transcript
7         MessageStore.transcript.add(m);
8
9         // FIXME: figure out where the message goes next
10     }
11
12 }