outgoing smtp
[org.ibex.mail.git] / src / org / ibex / mail / Target.java
diff --git a/src/org/ibex/mail/Target.java b/src/org/ibex/mail/Target.java
new file mode 100644 (file)
index 0000000..0fea645
--- /dev/null
@@ -0,0 +1,9 @@
+package org.ibex.mail;
+import java.io.*;
+import org.ibex.js.*;
+
+/** base class for mail message "destinations" */
+public class Target {
+    public static final Target root = Script.root;
+    public void accept(Message m) throws IOException, MailException { /* FIXME */ }
+}