RAT (Release Audit Tool) results

The following document contains the results of RAT (Release Audit Tool).

*****************************************************
Summary
-------
Notes: 4
Binaries: 4
Archives: 5
Standards: 23

Apache Licensed: 20
Generated Documents: 0

JavaDocs are generated and so license header is optional
Generated files do not required license headers

3 Unknown Licenses

*******************************

Archives (+ indicates readable, $ unreadable): 

 + /opt/development/workspace/mailet-site/api/stage/javax.activation/jars/activation-1.1.1.jar
 + /opt/development/workspace/mailet-site/api/stage/biz.aQute/jars/bnd-0.0.249.jar
 + /opt/development/workspace/mailet-site/api/stage/javax.mail/jars/mail-1.4.1.jar
 + /opt/development/workspace/mailet-site/api/stage/junit/jars/junit-3.8.1.jar
 + /opt/development/workspace/mailet-site/api/stage/org.apache/jars/apache-jar-resource-bundle-1.2.jar
 
*****************************************************
  Files with AL headers will be marked L
  Binary files (which do not require AL headers) will be marked B
  Compressed archives will be marked A
  Notices, licenses etc will be marked N
  AL    /opt/development/workspace/mailet-site/api/pom.xml
  A     /opt/development/workspace/mailet-site/api/stage/javax.activation/jars/activation-1.1.1.jar
  N     /opt/development/workspace/mailet-site/api/stage/javax.activation/jars/activation-1.1.1.LICENSE
  A     /opt/development/workspace/mailet-site/api/stage/biz.aQute/jars/bnd-0.0.249.jar
  N     /opt/development/workspace/mailet-site/api/stage/biz.aQute/jars/bnd-0.0.249.LICENSE
  A     /opt/development/workspace/mailet-site/api/stage/javax.mail/jars/mail-1.4.1.jar
  N     /opt/development/workspace/mailet-site/api/stage/javax.mail/jars/mail-1.4.1.LICENSE
  A     /opt/development/workspace/mailet-site/api/stage/junit/jars/junit-3.8.1.jar
  AL    /opt/development/workspace/mailet-site/api/stage/junit/poms/junit-3.8.1.pom
  A     /opt/development/workspace/mailet-site/api/stage/org.apache/jars/apache-jar-resource-bundle-1.2.jar
  B     /opt/development/workspace/mailet-site/api/src/site/resources/images/asf-logo-reduced.gif
  B     /opt/development/workspace/mailet-site/api/src/site/resources/images/james-mailetapi-logo.gif
  B     /opt/development/workspace/mailet-site/api/src/site/xdoc/images/james-logo.jpg
  B     /opt/development/workspace/mailet-site/api/src/site/xdoc/images/void.gif
  AL    /opt/development/workspace/mailet-site/api/src/site/xdoc/index.xml
  AL    /opt/development/workspace/mailet-site/api/src/site/xdoc/stylesheets/site.xsl
  AL    /opt/development/workspace/mailet-site/api/src/site/xdoc/stylesheets/project.xml
  AL    /opt/development/workspace/mailet-site/api/src/site/site.xml
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/MatcherConfig.java
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/MailetException.java
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/MailetConfig.java
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/MailetContext.java
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/HostAddress.java
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/Matcher.java
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/package.html
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/Mail.java
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/MailAddress.java
 !????? /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/Mail.java.rej
  AL    /opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/Mailet.java
  AL    /opt/development/workspace/mailet-site/api/src/test/java/org/apache/mailet/MailAddressTest.java
  AL    /opt/development/workspace/mailet-site/api/build.xml
  AL    /opt/development/workspace/mailet-site/api/include.properties
  N     /opt/development/workspace/mailet-site/api/RELEASE_NOTES.txt
 !????? /opt/development/workspace/mailet-site/api/LICENSE.apache
 !????? /opt/development/workspace/mailet-site/api/NOTICE.apache
  AL    /opt/development/workspace/mailet-site/api/default.properties
 
 *****************************************************
 Printing headers for files without AL header...
 
 
 =======================================================================
 ==/opt/development/workspace/mailet-site/api/src/main/java/org/apache/mailet/Mail.java.rej
 =======================================================================
 ***************
*** 27,206 ****
  import java.util.Iterator;
  
  /**
-  * Wrap a MimeMessage with routing information (from SMTP) such
-  * as SMTP specified recipients, sender, and ip address and hostname
-  * of sending server.  It also contains its state which represents
-  * which processor in the mailet container it is currently running.
-  * Special processor names are "root" and "error".
   *
-  * @version CVS $Revision$ $Date$
   */
  public interface Mail extends Serializable, Cloneable {
      String GHOST = "ghost";
      String DEFAULT = "root";
      String ERROR = "error";
      String TRANSPORT = "transport";
      /**
-      * Returns the message name of this message
       * 
       * @return the message name
       * @since Mailet API v2.3
       */
      String getName();
      /**
-      * Set the message name of this message
       * 
-      * @param newName new name
       * @since Mailet API v2.3
       */
-     void setName(String newName);
      /**
-      * Returns the MimeMessage stored in this message
       *
       * @return the MimeMessage that this Mail object wraps
-      * @throws MessagingException - an error occured while loading this object
       */
      MimeMessage getMessage() throws MessagingException;
      /**
-      * Returns a Collection of MailAddress objects that are recipients of this message
       *
-      * @return a Collection of MailAddress objects that are recipients of this message
       */
      Collection getRecipients();
      /**
-      * Method setRecipients.
-      * @param recipients a Collection of MailAddress Objects representing the recipients of this message
       * @since Mailet API v3.0-unstable
       */

 =======================================================================
 ==/opt/development/workspace/mailet-site/api/LICENSE.apache
 =======================================================================
                                  Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally

 =======================================================================
 ==/opt/development/workspace/mailet-site/api/NOTICE.apache
 =======================================================================
    =========================================================================
   ==      NOTICE file for use with the Apache License, Version 2.0,      ==
   =========================================================================

   Apache James Mailet API 
   Copyright 2008 The Apache Software Foundation