Java Doc for DSNBounce.java in  » Net » james-2.3.1 » org » apache » james » transport » mailets » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » james 2.3.1 » org.apache.james.transport.mailets 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.james.transport.mailets.AbstractRedirect
   org.apache.james.transport.mailets.AbstractNotify
      org.apache.james.transport.mailets.DSNBounce

DSNBounce
public class DSNBounce extends AbstractNotify (Code)

Generates a Delivery Status Notification (DSN) Note that this is different than a mail-client's reply, which would use the Reply-To or From header.

Bounced messages are attached in their entirety (headers and content) and the resulting MIME part type is "message/rfc822".
The reverse-path and the Return-Path header of the response is set to "null" ("<>"), meaning that no reply should be sent.

A sender of the notification message can optionally be specified. If one is not specified, the postmaster's address will be used.

Supports the passThrough init parameter (true if missing).

Sample configuration:


 <mailet match="All" class="DSNBounce">
 <sender>an address or postmaster or sender or unaltered, 
 default=postmaster</sender>
 <prefix>optional subject prefix prepended to the original 
 message</prefix>
 <attachment>message, heads or none, default=message</attachment>
 <messageString>the message sent in the bounce, the first occurrence of the pattern [machine] is replaced with the name of the executing machine, default=Hi. This is the James mail server at [machine] ... </messageString>
 <passThrough>true or false, default=true</passThrough>
 <debug>true or false, default=false</debug>
 </mailet>
 

See Also:   org.apache.james.transport.mailets.AbstractNotify




Method Summary
protected  MimeBodyPartcreateAttachedOriginal(Mail originalMail, int attachmentType)
    
protected  MimeBodyPartcreateDSN(Mail originalMail)
    
protected  MimeBodyPartcreateTextMsg(Mail originalMail)
     Create a MimeBodyPart with a textual description for human readers.
protected  String[]getAllowedInitParameters()
     Gets the expected init parameters.
protected  intgetAttachmentType()
    
protected  StringgetErrorMsg(MessagingException me)
     Utility method for getting the error message from the (nested) exception.
public  StringgetMailetInfo()
    
protected  CollectiongetRecipients()
    
protected  MailAddressgetReversePath(Mail originalMail)
    
protected  StringgetStatus(MessagingException me)
     Guessing status code by the exception provided.
protected  InternetAddress[]getTo()
    
public  voidinit()
    
protected  StringnewName(Mail mail)
     Create a unique new primary key name.
public  voidservice(Mail originalMail)
     Service does the hard work and bounces the originalMail in the format specified by RFC3464.



Method Detail
createAttachedOriginal
protected MimeBodyPart createAttachedOriginal(Mail originalMail, int attachmentType) throws MessagingException(Code)
Create a MimeBodyPart with the original Mail as Attachment
Parameters:
  originalMail - MimeBodyPart
throws:
  MessagingException -



createDSN
protected MimeBodyPart createDSN(Mail originalMail) throws MessagingException(Code)
creates the DSN-bodypart for automated processing
Parameters:
  originalMail - MimeBodyPart dsn-bodypart
throws:
  MessagingException -



createTextMsg
protected MimeBodyPart createTextMsg(Mail originalMail) throws MessagingException(Code)
Create a MimeBodyPart with a textual description for human readers.
Parameters:
  originalMail - MimeBodyPart
throws:
  MessagingException -



getAllowedInitParameters
protected String[] getAllowedInitParameters()(Code)
Gets the expected init parameters.



getAttachmentType
protected int getAttachmentType() throws MessagingException(Code)
the attachment init parameter, or MESSAGE if missing



getErrorMsg
protected String getErrorMsg(MessagingException me)(Code)
Utility method for getting the error message from the (nested) exception.
Parameters:
  MessagingException - error message



getMailetInfo
public String getMailetInfo()(Code)



getRecipients
protected Collection getRecipients()(Code)
SpecialAddress.REVERSE_PATH



getReversePath
protected MailAddress getReversePath(Mail originalMail)(Code)
SpecialAddress.NULL (the meaning of bounce)



getStatus
protected String getStatus(MessagingException me)(Code)
Guessing status code by the exception provided. This method should use the status attribute when the SMTP-handler somewhen provides it
Parameters:
  MessagingException - status code



getTo
protected InternetAddress[] getTo()(Code)
SpecialAddress.REVERSE_PATH



init
public void init() throws MessagingException(Code)
Initialize the mailet



newName
protected String newName(Mail mail) throws MessagingException(Code)
Create a unique new primary key name.
Parameters:
  mail - the mail to use as the basis for the new mail name a new name



service
public void service(Mail originalMail) throws MessagingException(Code)
Service does the hard work and bounces the originalMail in the format specified by RFC3464.
Parameters:
  originalMail - the mail to bounce
throws:
  MessagingException - if a problem arises formulating the redirected mail
See Also:   org.apache.mailet.Mailet.service(org.apache.mailet.Mail)



Methods inherited from org.apache.james.transport.mailets.AbstractNotify
protected int getAttachmentType() throws MessagingException(Code)(Java Doc)
protected int getInLineType() throws MessagingException(Code)(Java Doc)
protected String getMessage()(Code)(Java Doc)
protected String getMessage(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected boolean getPassThrough() throws MessagingException(Code)(Java Doc)
abstract protected Collection getRecipients() throws MessagingException(Code)(Java Doc)
protected MailAddress getReplyTo() throws MessagingException(Code)(Java Doc)
protected MailAddress getReversePath(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected MailAddress getSender() throws MessagingException(Code)(Java Doc)
protected String getSubject() throws MessagingException(Code)(Java Doc)
protected String getSubjectPrefix()(Code)(Java Doc)
protected InternetAddress[] getTo() throws MessagingException(Code)(Java Doc)
protected boolean isReply()(Code)(Java Doc)
protected void setSubjectPrefix(Mail newMail, String subjectPrefix, Mail originalMail) throws MessagingException(Code)(Java Doc)

Fields inherited from org.apache.james.transport.mailets.AbstractRedirect
final protected static int ALL(Code)(Java Doc)
final protected static int BODY(Code)(Java Doc)
final protected static int HEADS(Code)(Java Doc)
final protected static int MESSAGE(Code)(Java Doc)
final protected static int NONE(Code)(Java Doc)
final protected static int UNALTERED(Code)(Java Doc)
protected boolean isDebug(Code)(Java Doc)
protected boolean isStatic(Code)(Java Doc)

Methods inherited from org.apache.james.transport.mailets.AbstractRedirect
protected boolean attachError() throws MessagingException(Code)(Java Doc)
protected boolean attachError(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void buildAlteredMessage(Mail newMail, Mail originalMail) throws MessagingException(Code)(Java Doc)
public static void changeSubject(MimeMessage message, String newValue) throws MessagingException(Code)(Java Doc)
protected String[] getAllowedInitParameters()(Code)(Java Doc)
protected int getAttachmentType() throws MessagingException(Code)(Java Doc)
protected int getAttachmentType(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected boolean getFakeDomainCheck() throws MessagingException(Code)(Java Doc)
protected boolean getFakeDomainCheck(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected int getInLineType() throws MessagingException(Code)(Java Doc)
protected int getInLineType(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected String getMessage() throws MessagingException(Code)(Java Doc)
protected String getMessage(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected String getMessageHeaders(MimeMessage message) throws MessagingException(Code)(Java Doc)
protected boolean getPassThrough() throws MessagingException(Code)(Java Doc)
protected boolean getPassThrough(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected Collection getRecipients() throws MessagingException(Code)(Java Doc)
protected Collection getRecipients(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected MailAddress getReplyTo() throws MessagingException(Code)(Java Doc)
protected MailAddress getReplyTo(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected MailAddress getReversePath() throws MessagingException(Code)(Java Doc)
protected MailAddress getReversePath(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected MailAddress getSender() throws MessagingException(Code)(Java Doc)
protected MailAddress getSender(Mail originalMail) throws MessagingException(Code)(Java Doc)
final protected MailAddress getSpecialAddress(String addressString, String[] allowedSpecials) throws MessagingException(Code)(Java Doc)
protected String getSubject() throws MessagingException(Code)(Java Doc)
protected String getSubject(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected String getSubjectPrefix() throws MessagingException(Code)(Java Doc)
protected String getSubjectPrefix(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected InternetAddress[] getTo() throws MessagingException(Code)(Java Doc)
protected InternetAddress[] getTo(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected int getTypeCode(String param)(Code)(Java Doc)
public void init() throws MessagingException(Code)(Java Doc)
protected boolean isReply() throws MessagingException(Code)(Java Doc)
protected boolean isReply(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected boolean isStatic()(Code)(Java Doc)
protected Collection replaceInternetAddresses(Mail mail, Collection list) throws MessagingException(Code)(Java Doc)
protected Collection replaceMailAddresses(Mail mail, Collection list)(Code)(Java Doc)
final protected boolean senderDomainIsValid(Mail mail) throws MessagingException(Code)(Java Doc)
public void service(Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void setIsReply(Mail newMail, boolean isReply, Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void setRecipients(Mail newMail, Collection recipients, Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void setReplyTo(Mail newMail, MailAddress replyTo, Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void setReversePath(MailImpl newMail, MailAddress reversePath, Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void setSender(Mail newMail, MailAddress sender, Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void setSubjectPrefix(Mail newMail, String subjectPrefix, Mail originalMail) throws MessagingException(Code)(Java Doc)
protected void setTo(Mail newMail, InternetAddress[] to, Mail originalMail) throws MessagingException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.