use lastModified() to record SEEN bit on FileBasedMailbox
[org.ibex.mail.git] / src / org / ibex / mail / Filter.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;
6 /** generic superclass for processing elements that recieve a message and "usually" pass it on */
7 public class Filter {
8     public Message process(Message m) { return null; }
9 }