c17c64a72acf8ee5f9373a7506fca332abf10992
[org.ibex.mail.git] / src / org / ibex / mail / target / Drop.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.target;
6 import java.io.*;
7 import org.ibex.js.*;
8 import org.ibex.util.*;
9 import org.ibex.mail.*;
10 import org.ibex.mail.target.*;
11
12 public class Drop extends Target {
13     public static final Drop instance = new Drop();
14     public void accept(Message m) throws IOException, MailException {
15         Log.warn(this, "dropping message " + m.summary());
16     }
17 }