You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2015/05/18 21:47:07 UTC

svn commit: r9039 - in /dev/commons/email: ./ binaries/ source/

Author: tn
Date: Mon May 18 19:47:07 2015
New Revision: 9039

Log:
Creating distribution files for Commons Email 1.4 RC1

Added:
    dev/commons/email/RELEASE-NOTES.txt   (with props)
    dev/commons/email/binaries/commons-email-1.4-bin.tar.gz   (with props)
    dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.asc
    dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.md5
    dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.sha1
    dev/commons/email/binaries/commons-email-1.4-bin.zip   (with props)
    dev/commons/email/binaries/commons-email-1.4-bin.zip.asc
    dev/commons/email/binaries/commons-email-1.4-bin.zip.md5
    dev/commons/email/binaries/commons-email-1.4-bin.zip.sha1
    dev/commons/email/source/commons-email-1.4-src.tar.gz   (with props)
    dev/commons/email/source/commons-email-1.4-src.tar.gz.asc
    dev/commons/email/source/commons-email-1.4-src.tar.gz.md5
    dev/commons/email/source/commons-email-1.4-src.tar.gz.sha1
    dev/commons/email/source/commons-email-1.4-src.zip   (with props)
    dev/commons/email/source/commons-email-1.4-src.zip.asc
    dev/commons/email/source/commons-email-1.4-src.zip.md5
    dev/commons/email/source/commons-email-1.4-src.zip.sha1

Added: dev/commons/email/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/email/RELEASE-NOTES.txt (added)
+++ dev/commons/email/RELEASE-NOTES.txt Mon May 18 19:47:07 2015
@@ -0,0 +1,281 @@
+                         Commons Email Package
+                              Version 1.4
+                             Release Notes
+
+INTRODUCTION:
+-------------
+
+Commons Email aims to provide a API for sending email. It builds on the JavaMail
+API with the aim of presenting a simplified API which is easy for developers who
+are not mail experts to use. It is a compact component with a small number of
+classes.
+
+The Commons Email website is the source for the most recent information,
+downloads, reports, and bug status:
+
+http://commons.apache.org/email/
+
+This is a minor release which adds some new features and fixes several bugs
+present in the 1.3.3 release. All current users are encouraged to upgrade.
+
+CHANGES FROM 1.3.3:
+-----------------
+
+== Compatibility ==
+
+* Java 5 or later is required (unchanged since 1.3).
+
+* JavaMail dependency has been upgraded to version 1.5.2,
+  as a consequence, the maven dependency has changed to:
+
+  <dependency>
+    <groupId>com.sun.mail</groupId>
+    <artifactId>javax.mail</artifactId>
+    <version>1.5.2</version>
+  </dependency>
+
+== New Features ==
+
+* Added getter for the bounce address of an email to class Email.
+  Issue: EMAIL-146. Thanks to Alexander Lehmann.
+
+* Added support for mapping of content-ids to DataSource in "MimeMessageParser".
+  Issue: EMAIL-141. Thanks to Stephen Kruger.
+
+== Updates ==
+
+* Update Oracle JavaMail dependency from 1.4.5 to 1.5.2.
+  Issue: EMAIL-144.
+
+== Fixed Bugs ==
+
+* "Email" threw an "EmailException" when trying to send the email if neither a from
+  nor bounce address was specified, although a "mail.from" property was set in the mail session.
+  Issue: EMAIL-149. Thanks to Richard DiCroce.
+
+* "ImageHtmlEmail" failed to embed attachments if their data source name was null.
+  Issue: EMAIL-151. Thanks to Andreas Kohn.
+
+* Html emails did not have the correct content-type set when using the Apache Geronimo
+  JavaMail implementation v1.8.x.
+  Issue: EMAIL-147. Thanks to Can Eskikaya.
+
+* An "HtmlEmail" with both, an html and plain text content but no attachments or embedded
+  images will now be created with mimetype "multipart/alternative" instead of "multipart/mixed".
+  Issue: EMAIL-142. Thanks to Marcin Tomiak.
+
+
+CHANGES FROM 1.3.2:
+-----------------
+
+== Compatibility ==
+
+* Java 5 or later is required (unchanged since 1.3).
+
+== Fixed Bugs ==
+
+* The filename of an attachment was not properly encoded in case it contained
+  non-ascii characters.
+  Issue: EMAIL-138. Thanks to qed.
+
+* MimeMessageParser did not correctly parse MimeMessage objects created by
+  calling HtmlEmail.buildMimeMessage() and HtmlEmail.getMimeMessage().
+  Issue: EMAIL-137. Thanks to Alex Kogan.  
+
+* Fix Javadoc 1.8 errors.
+  Issue: EMAIL-136. Thanks to Ville Skyttä.
+
+
+CHANGES FROM 1.3.1:
+-----------------
+
+== Compatibility ==
+
+* Java 5 or later is required (unchanged since 1.3).
+
+== Fixed Bugs ==
+
+* Change visibility of DataSourceUrlResourceResolver.createUrl(String) to protected so
+  that sub-classes can override it.
+  Issue: EMAIL-135. Thanks to Andreas Kohn.
+
+* Support default mime charset property "mail.mime.charset" when adding text content
+  to instances of either SimpleEmail or HtmlEmail.
+  Issue: EMAIL-104. Thanks to Hiroshi Ikeda.
+
+* Added support for sending partial emails in case of invalid addresses.
+  Issue: EMAIL-132. Thanks to Allen Xudong Cheng.
+
+* The MimeMessageParser will now correctly parse MIME multi-parts of type "text/plain"
+  and "text/html" with a content disposition header of "attachment". The parts will
+  be added to the list of attachments even if there is no other text or html content.
+  Issue: EMAIL-131. Thanks to Raju Y.
+
+* Special characters in the body of an HTML email could lead to an exception when the
+  mime message was built.
+  Issue: EMAIL-127. Thanks to Dominik Stadler.
+
+
+CHANGES FROM 1.3:
+-----------------
+
+== Compatibility ==
+
+* Java 5 or later is required (unchanged since 1.3).
+
+== Fixed Bugs ==
+
+* DataSourceClassPathResolver will now correctly set the DataSource name for resolved
+  resources. Additionally, it is now possible to set the name for a ByteArrayDataSource.
+  Issue: EMAIL-125. Thanks to Jean-Marc.
+
+* Header values are not folded twice anymore. The actual encoding and folding is
+  now only performed in Email.buildMimeMessage().
+  Issue: EMAIL-124. Thanks to Stefan Schueffler.
+
+
+CHANGES FROM 1.2:
+-----------------
+
+== Compatibility ==
+
+* Java 5 or later is now required.
+
+== New Features ==
+
+* Added new methods addTo(String[]), addCc(String[]) and addBcc(String[]) to Email.
+  Issue: EMAIL-114. Thanks to Gokul Nanthakumar C. 
+
+* HtmlmageEmail should support class path resources  
+  Issue: EMAIL-108. Thanks to Elisabeth Kasimir, Alexander Kasimir. 
+
+* Added a MultiPartEmail.attach(File) method since attaching a file is a simple and common. 
+
+* Added MimeMessageParser and MimeMessageUtils. 
+
+== Fixed Bugs ==
+
+* Use the provided Content-ID in HtmlEmail#embed(File, String) instead of creating
+  a random one. The used and returned Content-ID will be URL encoded (see RFC 2392).
+  Issue: EMAIL-101. Thanks to Andrew Starodub.
+
+* Upgraded source and binary compatibility to JDK 1.5. Additionally the public/protected
+  methods and fields have been properly generified.
+  Issue: EMAIL-122. Thanks to sebb.
+
+* Do not set the personal name of an address to the email address unless it is
+  explicitly specified (affects TO, CC, BCC and FROM addresses).
+  Issue: EMAIL-103. Thanks to David Rees.
+
+* Removed emulation support for nested exceptions in EmailException.
+  Issue: EMAIL-117. Thanks to sebb.
+
+* Prevent external modification of internal array in DataSourceCompositeResolver.
+  Issue: EMAIL-116. Thanks to sebb.
+ 
+* Close temporary input stream in MultiPartEmail#attach(DataSource, String, String)
+  to prevent locking of file resources on windows systems.
+  Issue: EMAIL-120. Thanks to Mike Bell.
+
+* The patch actually broke sending emails over a secured connection - disabled the
+  "MAIL_SMTP_SSL_CHECKSERVERIDENTITY" and "MAIL_SMTP_SSL_ENABLE" activation. Tested
+  the functionality using GMail, GMX and Office365 so the code is at least working for
+  a couple of existing SMTP servers. Also added 'sslCheckServerIdentity' including
+  setter and getter. Also added a chapter regarding "Security" to the user manual.
+  Issue: EMAIL-105. Thanks to Siegfried Goeschl.
+
+* Maven Site fails with error in Checkstyle configuration.
+  Issue: EMAIL-113. Thanks to Peter Kofler.
+ 
+* DataSourceFileResolverTest fails under IBM JDK 1.4 and 1.6 running on Windows.
+  Issue: EMAIL-112. Thanks to Peter Kofler.
+ 
+* Update the current trunk to be binary compatible with the commons-email-1.2 release.
+  Issue: EMAIL-111. Thanks to Florian Pirchner.
+ 
+* Added unit test to ensure that parsing the broken mime message does not cause an OutOfMemoryException.
+  Issue: EMAIL-110. Thanks to Thomas Pummer. 
+
+* Added mime.types to META-INF - the definition is actually found in activation.jar
+  but did not work.  Issue: EMAIL-107. Thanks to Claus Polanka, Michael Jakl. 
+
+* STARTTLS can be used even without authenticator.
+  Issue: EMAIL-106. Thanks to Bruno Harbulot. 
+
+* Clarified the meaning of setTLS() which actually sends a "STARTTLS" command from the
+  client to the SMTP server. Please note that some "protected" variables were renamed
+  which could break existing code.
+  Issue: EMAIL-105. Thanks to Bruno Harbulot. 
+
+* Fixed HtmlEmail embed toLowerCase bug with Turkish locale.
+  Issue: EMAIL-102. Thanks to Okan Özeren. 
+
+* Specified Content-ID is now used when embedding a File object in an HtmlEmail.  
+  Issue: EMAIL-101. Thanks to Andrew Starodub. 
+
+* Throwing an IllegalStateException when setting mail session properties for an already
+  created mail session because the settings would be ignored. Please note that this
+  change could potentially break existing (but invalid) code.  Issue: EMAIL-96. 
+
+* Encoding and folding of headers is now done by commons-email.
+  Issue: EMAIL-98. Thanks to Mario Daepp. 
+
+* The default connection timeout is set to a reasonable default value of 60 seconds.
+  Issue: EMAIL-100. Thanks to David Parks. 
+
+* Moving the various constants from 'EMail' to 'EmailConstants' 
+
+* All setters are returning "this" to simplify building an email.
+  Issue: EMAIL-76. Thanks to Yu Kobayashi. 
+
+* Adding ImageHtmlEmail to create HTML emails with embedded images either
+  downloaded from HTTP or from the local file system.
+  Issue: EMAIL-92. Thanks to Dominik Stadler. 
+
+* Calling buildMimeMessage() before invoking send() caused
+  duplicated mime parts for HtmlEmail. The implementation now enforces
+  that an email can be only used once and throw an exception when
+  multiple invocations of buildMimeMessage() are detected.
+  Issue: EMAIL-95. 
+
+* Incorrect SMTP Port number shown in error message when an email fails
+  to send due to a blocked port and SSL is used.
+  Issue: EMAIL-91. Thanks to Kevin Lester. 
+
+
+REQUIREMENTS:
+
+J2SE environments
+-----------------
+
+Commons Email requires JavaMail 1.5.2 or later. The reference implementation
+is available at:
+
+https://java.net/projects/javamail/pages/Home
+
+However, the Apache Geronimo project (http://geronimo.apache.org)
+provides a J2EE-certified implementation of the JavaMail 1.4
+specification licensed under the Apache Software License.  
+
+Commons Email also requires the JavaBeans Activation Framework unless
+you are running on Java SE 6 or later. The Oracle implementation is available
+at:
+
+http://www.oracle.com/technetwork/java/javase/downloads/index-135046.html
+
+Apache Geronimo likewise provides an implementation under the Apache
+Software License.
+
+Commons Email has been tested with JDK 1.6 and 1.7.
+
+J2EE environments
+-----------------
+
+Commons Email is compatible with all certified Java Enterprise Edition
+5 implementations; no further dependencies are required. 
+
+Java 2 Enterprise Edition 1.4 users must ensure that the versions of
+JavaMail and JAF indicated above are available to their applications;
+the J2EE 1.4 specification only requires earlier versions.
+
+Earlier versions of J2EE are not supported.
\ No newline at end of file

Propchange: dev/commons/email/RELEASE-NOTES.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: dev/commons/email/RELEASE-NOTES.txt
------------------------------------------------------------------------------
    svn:keywords = Id Revision HeadURL

Propchange: dev/commons/email/RELEASE-NOTES.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: dev/commons/email/binaries/commons-email-1.4-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/email/binaries/commons-email-1.4-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.asc
==============================================================================
--- dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.asc (added)
+++ dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.asc Mon May 18 19:47:07 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJVWkApAAoJEKQfE8mZlFKT4SgQALs2kJll7MxcZEveEBeF+67D
+4KQUAgPYxjb2q0QpXavSvQyc8tmmBUB4MtkI7AFpX9PRpV1ny9GNUt7tPgg0W5Xn
+Zh+ScnVY8/JqjWNmgJrpefNZMUar3KNQcxLK7kaWB9KPSAdVkkbVtqr7oX2Hv0zH
+w8b6olNRmq5woCWYGeLbAKHnAffQ0G9xxGyGkwW4SDOkpQ+Q9oSF+lKYnzObrHie
+QpEJAA9UDa0e+IWwhRnzm0CZyDhj305h+UWUtwQbX9mFvAlWEfPacsfQxyg/EjSI
+uW2jkg2hPXkd6/liTcvMKixn/nLaLh8ZVeWWkflwvvDYGuUy9IJJdL8oyyNYAwco
+7mpTvu3B9S+rpBhB3mQ4dAr/UFllq0VWxTootl/3zUyli8ELEAlS+24oLairCl5N
+Qd2qjLeBzVjwoE8jrP9tuNRL/hNe65mybEiM9inslvJVcGTrnHL+wFcXKc6hqqLU
+GuoTsUwf5BN8VRIqqWFiilcvl+lTWOd7/6K6UBedXx0vbf0HlgjlrzejzQAqiTzq
+aberx3QZHwb1O1OWQTr/WSG+L7v6dw9DL4zSTCESl+c5JBmhCmrH5PTG3uFAb3k1
+kwh2FXG4L/oimCrh8TgoddmNpV4bVH9vmqEnXp8NRAGiQVQmyjqu3BKbUb5X2Zr/
+tlgSGcZoR441LBPD6mTa
+=D7va
+-----END PGP SIGNATURE-----

Added: dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.md5
==============================================================================
--- dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.md5 (added)
+++ dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.md5 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+250b861212530f13758393ef5af757f0
\ No newline at end of file

Added: dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.sha1
==============================================================================
--- dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.sha1 (added)
+++ dev/commons/email/binaries/commons-email-1.4-bin.tar.gz.sha1 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+4724166ae8cc1d2abdac7bca539168a28327499a
\ No newline at end of file

Added: dev/commons/email/binaries/commons-email-1.4-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/email/binaries/commons-email-1.4-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/zip

Added: dev/commons/email/binaries/commons-email-1.4-bin.zip.asc
==============================================================================
--- dev/commons/email/binaries/commons-email-1.4-bin.zip.asc (added)
+++ dev/commons/email/binaries/commons-email-1.4-bin.zip.asc Mon May 18 19:47:07 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJVWkAqAAoJEKQfE8mZlFKT6MwQAI7Oua+HwSlfcUhQQkTa/i6R
+/dX1u3SwfwDfNGnvBHAfBpvjqqXQxgjoNzyitrj7AU4P27JjWoWN3oyz/t0962R6
+8uuwT4HRVPg6XgV/Lztp0ToIZHDrIiyKvor5KR9YcbqzcJlJgVJDlnILiWZk9LH9
+tLgbhobWRqbFuPMhOVefUVuJDRkspzO7A1MSp17hpCAwi2/7z3BuNVWY4dkL8g6e
+OBZsBMlqTATzqu5ROl1rEG4fuNgG+jOAQjlkg/dJ/hGWpz7CuPjfeV7LToH0G92k
+HzW/Dd++xOEuD/Rz/5DF5kinyH4rsiuWG01O34QyCxPZ7+L1PZVG/A3F2eBzKDhn
+zLXAqHwjkBXrNVsk7tm2pNcn8ZN89B2OiXdcM6/vTV+iZ2OrTP+nEJSwTtEmCs6v
+ewHBlnpzG7HqhbgGWRl0pPCsBqL2cSFwfphs/6f0EmcZgADdustkRY4Tntvi5W+g
+8+1YGsEgVbVv7r8HP5B4StZ8g8n9X4aGO3xqa9o6Jl627zhIIK6J50pXW/SNI8Lf
+e5LRONo+DM2drHV2F2y+huL7xhe4988uDo/ilqJ7IHONfBdAsFuBN+uKgWKb/3y/
+BJaw+PkWc9auiKMMFPRurADpa4Id7ASz77i+jSJUyl79gDE0qakI5N6xBg0vIMRN
+Qbft3jvpUBjY6wSVOnm8
+=DcGb
+-----END PGP SIGNATURE-----

Added: dev/commons/email/binaries/commons-email-1.4-bin.zip.md5
==============================================================================
--- dev/commons/email/binaries/commons-email-1.4-bin.zip.md5 (added)
+++ dev/commons/email/binaries/commons-email-1.4-bin.zip.md5 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+2a8ea6f169b8f95612126b395855b76e
\ No newline at end of file

Added: dev/commons/email/binaries/commons-email-1.4-bin.zip.sha1
==============================================================================
--- dev/commons/email/binaries/commons-email-1.4-bin.zip.sha1 (added)
+++ dev/commons/email/binaries/commons-email-1.4-bin.zip.sha1 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+c2dc0a6bf7d2566b1b8e71da83f5d8c1a07b5610
\ No newline at end of file

Added: dev/commons/email/source/commons-email-1.4-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/email/source/commons-email-1.4-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/commons/email/source/commons-email-1.4-src.tar.gz.asc
==============================================================================
--- dev/commons/email/source/commons-email-1.4-src.tar.gz.asc (added)
+++ dev/commons/email/source/commons-email-1.4-src.tar.gz.asc Mon May 18 19:47:07 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJVWkAqAAoJEKQfE8mZlFKTy/sQAKWIDqeANOPRGkSDKmtUKpJT
+5IWhoMi1T4CsUtWaj23JoYVSKZG/6UbxIU3+Z5FoEisZqmmd+m2EY5xWDdEmVRzr
+HUEsGxKZt23Wlg8ulXrBlGAjgEPkwl9YqIRhEG7h4U81EJhmkBqOuzcjbfGmBNgk
+aKg59mKBbiRaPnQPLS+KLU5ugUzzNCCPA8sv/UplkXDmEBQSOHgr64E3WjcX3Z4d
+UeMIoD0nWXU9/0hurQd7uC+oi9qFREpGgfzg4+Ix/BEE26h+vdh17qTYSbXOklRQ
+YIsvVC5YRETT6fBeeuy7GFN0/IwTWPHfVxNNpx36jvFgI7JyvPodYrf/ZZwfCVHy
+1yfLo/WKAakNI1WqGz0l9h/7WybxHg392766JmUgFne2b7gYkldvzaHZ94XNAOTF
+FqOHKDvb17nC+U7uUy7RnI/cMoo3ME30Xo5cJvcu9ijV1c/NAdKj5PFBstVVb/Pa
+aqSl5B/g/ceNs8iL8iF65uWj0RQyL+iTbdArSg867ZExbVcSrzw393t4ZzQvd0+3
+9R3NXZ8jX84S4497F1zFfqMVNOwiNFlhmOh/VlOtaGPktaAvSuyBwfQL7QY0nWUc
+uw++ar+wJ/WkQlZ0BrckkteoLzwowf5SQvm3wGkOvuhn2fakXFjhkCtNGTRTT5AS
+b4iViWMqPlHs3EOH8s77
+=5UUR
+-----END PGP SIGNATURE-----

Added: dev/commons/email/source/commons-email-1.4-src.tar.gz.md5
==============================================================================
--- dev/commons/email/source/commons-email-1.4-src.tar.gz.md5 (added)
+++ dev/commons/email/source/commons-email-1.4-src.tar.gz.md5 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+668ffe67fcc23d853c7d57f98669f3d3
\ No newline at end of file

Added: dev/commons/email/source/commons-email-1.4-src.tar.gz.sha1
==============================================================================
--- dev/commons/email/source/commons-email-1.4-src.tar.gz.sha1 (added)
+++ dev/commons/email/source/commons-email-1.4-src.tar.gz.sha1 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+a4182ee674256cf3cc40f4da193f55f049a29b50
\ No newline at end of file

Added: dev/commons/email/source/commons-email-1.4-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/email/source/commons-email-1.4-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/zip

Added: dev/commons/email/source/commons-email-1.4-src.zip.asc
==============================================================================
--- dev/commons/email/source/commons-email-1.4-src.zip.asc (added)
+++ dev/commons/email/source/commons-email-1.4-src.zip.asc Mon May 18 19:47:07 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJVWkArAAoJEKQfE8mZlFKTpyQP/RuCCo+JBWXA3gFKN10DGez+
+lhzA/f5IcS9DtZtyLQxlgq1GFkmVQT3PzLRZFISmV4pSL6Xsvi4sd5Ocor37GXF3
+DJZ44Wr3Lai/gwrqKghVBS+caqs6Y2zyB8odkGWbEsH9+TiGNstCnRlEduHl4co4
+iL6UYMl1bxfyJ0tOsUAshLt92CY7DkwO7BJHlMS6Ea4tbuwncaRe6toG28glaqoG
+d3mZMU0NT3GlHRmfdxaKOlOaz2yXFGpc74DU1z2mYknZ2zKibxHYYA5t4Y+0zVPZ
+s9LzCX2ojN0BL+kzg6oIt6ptxJRELZ/A4WBhA6JAeNlIBeCJ84di9JpZXnob2TBN
+jBM1XVQTSVJ2/h1Fr1BCtrV5SnSyQnHCeBmAndPn5zERRTWu++aCP4CTfoOr9Xzm
+OU+l0O5zA5xl4Rgtqqq+/m8V/Jr90D6QioD9nEypKu8k7K7cvryvUcREuvkwbcf5
+PhoX+5Di47T4Q8yinyLNZfKk/2XPQoezrGt5fdEztmIRij0fcpWL4cVoOgR8Q9Ln
+Ubj9bboPYxlzwV2KxVopW+Ha/dbZrAzXdQwEsVJQusgCOKzOZG1CPKVSU9BMTZUN
+WbZnb2TsuumfzM3S4TgbDrRFzUkPe5xQ20X3HGUp38HC42fobF6z6AXpJNdFpGPZ
+QFKGrea7nmQIkg92L4Zn
+=TfQd
+-----END PGP SIGNATURE-----

Added: dev/commons/email/source/commons-email-1.4-src.zip.md5
==============================================================================
--- dev/commons/email/source/commons-email-1.4-src.zip.md5 (added)
+++ dev/commons/email/source/commons-email-1.4-src.zip.md5 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+a6ac2b05fbf17e958c293106c64370c5
\ No newline at end of file

Added: dev/commons/email/source/commons-email-1.4-src.zip.sha1
==============================================================================
--- dev/commons/email/source/commons-email-1.4-src.zip.sha1 (added)
+++ dev/commons/email/source/commons-email-1.4-src.zip.sha1 Mon May 18 19:47:07 2015
@@ -0,0 +1 @@
+414230743655ca5be2bd33cd5ecd748e5013d9d8
\ No newline at end of file