org.apache.james.transport.mailets
Class ToRepository

java.lang.Object
  |
  +--org.apache.mailet.GenericMailet
        |
        +--org.apache.james.transport.mailets.ToRepository
All Implemented Interfaces:
Mailet, MailetConfig

public class ToRepository
extends GenericMailet

Stores incoming Mail in the specified Repository. If the "passThrough" in confs is true the mail will be returned untouched in the pipe. If false will be destroyed.

Version:
1.0.0, 24/04/1999
Author:
Federico Barbieri This is $Revision: 1.4 $ Committed on $Date: 2002/01/18 02:48:38 $ by: $Author: darrell $

Constructor Summary
ToRepository()
           
 
Method Summary
 java.lang.String getMailetInfo()
          Returns information about the mailet, such as author, version, and copyright.
 void init()
          A convenience method which can be overridden so that there's no need to call super.init(config).
 void service(Mail genericmail)
          Called by the mailet container to allow the mailet to process a message.
 
Methods inherited from class org.apache.mailet.GenericMailet
destroy, getInitParameter, getInitParameterNames, getMailetConfig, getMailetContext, getMailetName, init, log, log
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ToRepository

public ToRepository()
Method Detail

init

public void init()
Description copied from class: GenericMailet
A convenience method which can be overridden so that there's no need to call super.init(config). Instead of overriding init(MailetConfig), simply override this method and it will be called by GenericMailet.init(MailetConfig config). The MailetConfig object can still be retrieved via getMailetConfig().

Overrides:
init in class GenericMailet

service

public void service(Mail genericmail)
Description copied from class: GenericMailet
Called by the mailet container to allow the mailet to process a message. This method is declared abstract so subclasses must override it.

Specified by:
service in interface Mailet
Specified by:
service in class GenericMailet
Parameters:
genericmail - - the Mail object that contains the MimeMessage and routing information

getMailetInfo

public java.lang.String getMailetInfo()
Description copied from class: GenericMailet
Returns information about the mailet, such as author, version, and copyright. By default, this method returns an empty string. Override this method to have it return a meaningful value.

Specified by:
getMailetInfo in interface Mailet
Overrides:
getMailetInfo in class GenericMailet
Returns:
String information about this mailet, by default an empty string


"Copyright © 2001 Apache Jakarta Project. All Rights Reserved."