This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git
The following commit(s) were added to refs/heads/master by this push:
new 81ad402 Use HTTPS to access Apache resources.
81ad402 is described below
commit 81ad402813a7c5056657f7c0196d2be1c6fb1a0d
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 6 20:43:10 2019 -0400
Use HTTPS to access Apache resources.
---
pom.xml | 2 +-
src/site/xdoc/release_1_1.xml | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/pom.xml b/pom.xml
index bf695a9..eece89e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,7 +36,7 @@
<issueManagement>
<system>jira</system>
- <url>http://issues.apache.org/jira/browse/EMAIL</url>
+ <url>https://issues.apache.org/jira/browse/EMAIL</url>
</issueManagement>
<scm>
diff --git a/src/site/xdoc/release_1_1.xml b/src/site/xdoc/release_1_1.xml
index 784ea93..d775eaf 100644
--- a/src/site/xdoc/release_1_1.xml
+++ b/src/site/xdoc/release_1_1.xml
@@ -62,7 +62,7 @@
is now deprecated. Its function is now performed by the
<code>org.apache.commons.mail.HtmlEmail.inlineEmbeds</code> field;
the new field
is a <code>Map</code> instead of a <code>List</code>. The change
was made
- as a part of <a
href="http://issues.apache.org/jira/browse/EMAIL-50">EMAIL-50</a>.
+ as a part of <a
href="https://issues.apache.org/jira/browse/EMAIL-50">EMAIL-50</a>.
Clients that have subclassed <code>HtmlEmail</code> should change
their implementations
accordingly.
</li>
@@ -72,14 +72,14 @@
<subsection name="Notable bugfixes">
<ul>
<li>
- <a
href="http://issues.apache.org/jira/browse/EMAIL-50">EMAIL-50</a>:
+ <a
href="https://issues.apache.org/jira/browse/EMAIL-50">EMAIL-50</a>:
HtmlEmails were not being constructed correctly; several
email clients were not displaying attachments or embedded images
properly. As part of the same problem, duplicate embeds were not
being handled correctly.
</li>
<li>
- <a
href="http://issues.apache.org/jira/browse/EMAIL-1">EMAIL-1</a>:
+ <a
href="https://issues.apache.org/jira/browse/EMAIL-1">EMAIL-1</a>:
Email.setContent() was not taking a specified charset into
account. Additional setContent() overloadings were also added to
address common use cases.
@@ -90,7 +90,7 @@
<subsection name="Notable enhancements">
<ul>
<li>
- <a
href="http://issues.apache.org/jira/browse/EMAIL-35">EMAIL-35</a>:
+ <a
href="https://issues.apache.org/jira/browse/EMAIL-35">EMAIL-35</a>:
HtmlEmail now supports the embedding of any DataSource
implementation. Specific methods were added for File and URL
objects, removing the need for clumsy circumlocution.