org.apache.james.mailet.standard.mailets
Class SetMimeHeader

java.lang.Object
  extended by org.apache.mailet.base.GenericMailet
      extended by org.apache.james.mailet.standard.mailets.SetMimeHeader
All Implemented Interfaces:
Mailet, MailetConfig

public class SetMimeHeader
extends GenericMailet

Adds a specified header and value to the message.

Sample configuration:


 <mailet match="All" class="AddHeader">
   <name>X-MailetHeader</name>
   <value>TheHeaderValue</value>
 </mailet>
 

Version:
1.0.0, 2002-09-11

Constructor Summary
SetMimeHeader()
           
 
Method Summary
 String getMailetInfo()
          Return a string describing this mailet.
 void init()
          Initialize the mailet.
 void service(Mail mail)
          Takes the message and adds a header to it.
 
Methods inherited from class org.apache.mailet.base.GenericMailet
arrayToString, checkInitParameters, destroy, getInitParameter, getInitParameter, 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

SetMimeHeader

public SetMimeHeader()
Method Detail

init

public void init()
          throws javax.mail.MessagingException
Initialize the mailet.

Overrides:
init in class GenericMailet
Throws:
javax.mail.MessagingException - if an exception occurs that interrupts the mailet's normal operation

service

public void service(Mail mail)
Takes the message and adds a header to it.

Specified by:
service in interface Mailet
Specified by:
service in class GenericMailet
Parameters:
mail - the mail being processed

getMailetInfo

public String getMailetInfo()
Return a string describing this mailet.

Specified by:
getMailetInfo in interface Mailet
Overrides:
getMailetInfo in class GenericMailet
Returns:
a string describing this mailet


Copyright © 2008-2012 The Apache Software Foundation. All Rights Reserved.