This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 178c406 Commit build products
178c406 is described below
commit 178c406898d893a008e543a343cf6175cf4be89e
Author: Ponymail PPMC <[email protected]>
AuthorDate: Fri May 10 21:57:39 2024 +0000
Commit build products
---
content/about.html | 8 +++++---
content/building.html | 2 +-
content/contribute.html | 22 ++++++++++++--------
content/docs.html | 2 +-
content/docs/api.html | 8 +++++++-
content/docs/archiving.html | 15 +++++++-------
content/docs/building.html | 2 +-
content/docs/contributing.html | 2 +-
content/docs/design-notes.html | 6 +++---
content/docs/importing.html | 2 +-
content/docs/install.centos.html | 17 +++++++++-------
content/docs/install.debian.html | 17 +++++++++-------
content/docs/install.fedora.html | 17 +++++++++-------
content/docs/install.ubuntu.html | 44 ++++++++++++++++++++++++----------------
content/docs/installing.html | 2 +-
content/downloads.html | 4 ++--
content/index.html | 2 +-
content/source.html | 2 +-
content/support.html | 2 +-
19 files changed, 103 insertions(+), 73 deletions(-)
diff --git a/content/about.html b/content/about.html
index 34de6b4..ca10e31 100644
--- a/content/about.html
+++ b/content/about.html
@@ -76,7 +76,8 @@ into our projects.</p>
<h3 id='whoarewe'>Who are we?<a href='#whoarewe' style='color:
rgba(0,0,0,0);'>¶</a></h3>
<p>We're a small bunch of people committed to making mailing list interaction
as easy as possible.<br/>
Currently, we consist of (in alphabetical order):<br/>
- <ul>
+
+<ul>
<li>Andrew Bayer / abayer - mentor</li>
<li>Daniel Gruno / humbedooh - committer</li>
<li>Francesco Chicchiriccò / ilgrosso - committer</li>
@@ -88,7 +89,8 @@ into our projects.</p>
<li>Shane Curcu / curcuru - committer</li>
<li>Tony Stevenson / pctony - committer</li>
<li>Ulises Cerviño Beresi / ucb - committer</li>
- </ul></p>
+ </ul>
+</p>
<div style="display: inline-block; background: #BBB; margin: -10px; padding:
10px;">
<h4><a id="disclaimer"></a>Disclaimer</h4>
<div style="width: 65%; float: left;">
@@ -114,7 +116,7 @@ into our projects.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/building.html b/content/building.html
index dd0e54b..61f55b3 100644
--- a/content/building.html
+++ b/content/building.html
@@ -75,7 +75,7 @@
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/contribute.html b/content/contribute.html
index b91558b..0b6a6b1 100644
--- a/content/contribute.html
+++ b/content/contribute.html
@@ -59,19 +59,21 @@ documentation, evangelism, marketing, or helping out other
users.</p>
<h4 id='prepareyourfork'>Prepare your fork<a href='#prepareyourfork'
style='color: rgba(0,0,0,0);'>¶</a></h4>
<p>The first thing to do is to make sure you have the ponymail Git
repository configured as a remote. In this case we will add it as a
-remote called "ponymail":
+remote called "ponymail":</p>
<pre>
cd ponymail
git remote add ponymail https://github.com/apache/incubator-ponymail-foal.git
-</pre></p>
+</pre>
+
<h4 id='createthefeaturebranch'>Create the feature branch<a
href='#createthefeaturebranch' style='color: rgba(0,0,0,0);'>¶</a></h4>
-<p>When beginning working on the feature, take a branch from the latest master
version:
+<p>When beginning working on the feature, take a branch from the latest master
version:</p>
<pre>
git checkout master
git fetch ponymail
git reset --hard ponymail/master
git checkout -b feature-branch
-</pre></p>
+</pre>
+
<p>As we want a clean master and we should never use directly use the
master branch (it should be only used to sync the fork with the upstream
repo), so we can just reset hard it instead of rebasing. Develop the
@@ -89,16 +91,18 @@ request to be merged</p>
git rebase -i HEAD~N # Where N is the number of commits in the pull request
</pre>
-<p>Now that there is only one commit, update the branch to the latest version
of master:
+<p>Now that there is only one commit, update the branch to the latest version
of master:</p>
<pre>
git fetch ponymail
git rebase ponymail/master
-</pre></p>
-<p>At this point the local branch with one single commit on top of the latest
master and it can be pushed to your fork:
+</pre>
+
+<p>At this point the local branch with one single commit on top of the latest
master and it can be pushed to your fork:</p>
<pre>
git push <your-fork's-remote> feature-branch -f # You might need to push
with --force
# because of the rebase to the
latest master
-</pre></p>
+</pre>
+
<p>Now the pull request will be clean with one single commit and up to date
with the latest master. Ready to be merged!</p>
<h4 id='anoteaboutkeepingthepullrequestuptodate'>A note about keeping the pull
request up to date<a href='#anoteaboutkeepingthepullrequestuptodate'
style='color: rgba(0,0,0,0);'>¶</a></h4>
@@ -137,7 +141,7 @@ a clean way</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs.html b/content/docs.html
index edd71cb..8dfaa37 100644
--- a/content/docs.html
+++ b/content/docs.html
@@ -81,7 +81,7 @@
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/api.html b/content/docs/api.html
index dbc7089..0093180 100644
--- a/content/docs/api.html
+++ b/content/docs/api.html
@@ -238,6 +238,11 @@ or
<h3 id='fetchingamonthsdataasanmboxfile'>Fetching a month's data as an mbox
file<a href='#fetchingamonthsdataasanmboxfile' style='color:
rgba(0,0,0,0);'>¶</a></h3>
<p>Usage:
<code>GET
/api/[email protected]&date=2016-06</code></p>
+<p>Optional qualifiers include:
+- &header_from=$email
+- &header_subject=$subject_words
+- &header_body=$body_words</p>
+<p>Can also use various <a href="#Timespans">timespan</a> values</p>
<p>Response example:</p>
<pre>
TBA
@@ -246,6 +251,7 @@ TBA
<h3 id='getatomdataforlistoremail'>Get ATOM data for list or email<a
href='#getatomdataforlistoremail' style='color: rgba(0,0,0,0);'>¶</a></h3>
<p>Usage:
<code>GET /api/atom.lua(?list=$lid|?mid=$mid)</code></p>
+<p><strong>Not available in Ponymail Foal</strong></p>
<p>Parameters: (cookie may be required)
- $lid: the list id, e.g. [email protected]
- $mid: The email ID (Permalink)</p>
@@ -281,7 +287,7 @@ TBA
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/archiving.html b/content/docs/archiving.html
index 1bc0c9d..4700c28 100644
--- a/content/docs/archiving.html
+++ b/content/docs/archiving.html
@@ -109,18 +109,19 @@ is installed beforehand.</p>
<h2 id='munginglistids'>Munging list IDs<a href='#munginglistids'
style='color: rgba(0,0,0,0);'>¶</a></h2>
<p>If you need to rewrite list IDs on the fly as emails come in, you can use
the debug.cropout
setting for this (in <code>ponymail.cfg</code>). </p>
-<p>You can either use it to just crop away something:
+<p>You can either use it to just crop away something:</p>
<pre>
[debug]
# Remove 'foo' from all list IDs
cropout: foo
-</pre></p>
-<p>Or you can use it as a regex substitution:
+</pre>
+
+<p>Or you can use it as a regex substitution:</p>
<pre>
[debug]
- #Replace '<em>.bar.tld' with '</em>.blorg.bar.tld'
- cropout: <([a-z]+).bar.tld> <\1.blorg.bar.tld>
-</pre></p>
+ #Replace '*.bar.tld' with '*.blorg.bar.tld'
+ cropout: <([a-z]+)\.bar\.tld> <\1.blorg.bar.tld>
+</pre>
<div style="display: inline-block; background: #BBB; margin: -10px; padding:
10px;">
<h4><a id="disclaimer"></a>Disclaimer</h4>
<div style="width: 65%; float: left;">
@@ -146,7 +147,7 @@ setting for this (in <code>ponymail.cfg</code>). </p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/building.html b/content/docs/building.html
index 2fe68ab..90a7a80 100644
--- a/content/docs/building.html
+++ b/content/docs/building.html
@@ -76,7 +76,7 @@ committing the new combined JS, but that's up to you.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/contributing.html b/content/docs/contributing.html
index 5a9b42d..8752fe1 100644
--- a/content/docs/contributing.html
+++ b/content/docs/contributing.html
@@ -82,7 +82,7 @@ and pull requests are welcome.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/design-notes.html b/content/docs/design-notes.html
index 3baad8e..7ac0d4c 100644
--- a/content/docs/design-notes.html
+++ b/content/docs/design-notes.html
@@ -44,8 +44,8 @@ If the same mail was sent to multiple lists, then it exists
as multiple document
The MID is used to insert the document in the database, and can be used to
fetch it.</p>
<h3 id='databasedesign'>Database design<a href='#databasedesign' style='color:
rgba(0,0,0,0);'>¶</a></h3>
<p>The mails are stored in two separate ES indexes:
-<em> "mbox" - this stores information about the document, plus the parsed
content, and is used for searching and summary displays.
-</em> "mbox_source" - this is used to store the raw content of the document.
+- "mbox" - this stores information about the document, plus the parsed
content, and is used for searching and summary displays.
+- "mbox_source" - this is used to store the raw content of the document.
The two versions of the document are linked by using the same MID.</p>
<h3 id='requirementsforthemid'>Requirements for the MID<a
href='#requirementsforthemid' style='color: rgba(0,0,0,0);'>¶</a></h3>
<p>As mentioned above, each different document must have a unique id (MID).
@@ -112,7 +112,7 @@ http://markmail.org/message/oanktcpxlxkmyora</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/importing.html b/content/docs/importing.html
index 97ea96f..53539e9 100644
--- a/content/docs/importing.html
+++ b/content/docs/importing.html
@@ -112,7 +112,7 @@ If that varies between imports, then duplicates will
occur</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/install.centos.html b/content/docs/install.centos.html
index a6a2b39..11130ac 100644
--- a/content/docs/install.centos.html
+++ b/content/docs/install.centos.html
@@ -85,10 +85,11 @@ make
sudo make altinstall
</pre>
-<p>Install the required Python 3 modules:
+<p>Install the required Python 3 modules:</p>
<pre>
sudo pip3.4 install elasticsearch formatflowed chardet netaddr
-</pre></p>
+</pre>
+
<p>Install ElasticSearch:</p>
<pre>
sudo yum install -y java-1.7.0-openjdk-headless
@@ -117,17 +118,19 @@ sudo sudo /bin/systemctl enable elasticsearch.service
sudo /etc/init.d/elasticsearch start
</pre>
-<p>Check out a copy of Pony Mail:
+<p>Check out a copy of Pony Mail:</p>
<pre>
cd /var/www
git clone https://github.com/apache/incubator-ponymail-foal.git
-</pre></p>
-<p>Set up Pony Mail:
+</pre>
+
+<p>Set up Pony Mail:</p>
<pre>
cd /var/www/ponymail/tools
python3.4 setup.py
[... answer questions asked by the setup script ...]
-</pre></p>
+</pre>
+
<p>Set up Apache httpd by adding, for example, the following virtual host
configuration:
This differs from the normal installation (because of CentOS specifics), so
beware</p>
<pre>
@@ -179,7 +182,7 @@ much more.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/install.debian.html b/content/docs/install.debian.html
index 57f0a66..351a992 100644
--- a/content/docs/install.debian.html
+++ b/content/docs/install.debian.html
@@ -49,10 +49,11 @@
sudo apt-get install apache2 git lua-cjson lua-sec lua-socket python3
python3-pip
</pre>
-<p>Install the required Python 3 modules:
+<p>Install the required Python 3 modules:</p>
<pre>
sudo pip3 install elasticsearch formatflowed netaddr
-</pre></p>
+</pre>
+
<p>Install ElasticSearch:</p>
<pre>
sudo apt-get install openjdk-7-jre-headless
@@ -61,22 +62,24 @@ echo "deb
http://packages.elastic.co/elasticsearch/1.7/debian stable main" | sud
sudo apt-get update && sudo apt-get install elasticsearch
</pre>
-<p>Check out a copy of Pony Mail:
+<p>Check out a copy of Pony Mail:</p>
<pre>
cd /var/www
sudo git clone https://github.com/apache/incubator-ponymail-foal.git
-</pre></p>
+</pre>
+
<p>Start up ElasticSearch:</p>
<pre>
sudo service elasticsearch start
</pre>
-<p>Set up Pony Mail:
+<p>Set up Pony Mail:</p>
<pre>
cd /var/www/ponymail/tools
sudo python3 setup.py
[... answer questions asked by the setup script ...]
-</pre></p>
+</pre>
+
<p>Set up Apache httpd by adding, for example, the following virtual host
configuration:</p>
<pre>
<VirtualHost *:80>
@@ -126,7 +129,7 @@ much more.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/install.fedora.html b/content/docs/install.fedora.html
index 252df8d..0627fe7 100644
--- a/content/docs/install.fedora.html
+++ b/content/docs/install.fedora.html
@@ -54,10 +54,11 @@ sudo dnf install -y httpd git lua lua-sec lua-socket
python3 luarocks
sudo luarocks-5.3 install lua-cjson
</pre>
-<p>Install the required Python 3 modules:
+<p>Install the required Python 3 modules:</p>
<pre>
sudo pip3.4 install elasticsearch formatflowed chardet netaddr
-</pre></p>
+</pre>
+
<p>Install ElasticSearch:</p>
<pre>
sudo dnf install -y java-1.8.0-openjdk-headless
@@ -86,17 +87,19 @@ sudo /bin/systemctl enable elasticsearch.service
sudo /etc/init.d/elasticsearch start
</pre>
-<p>Check out a copy of Pony Mail:
+<p>Check out a copy of Pony Mail:</p>
<pre>
cd /var/www
sudo git clone https://github.com/apache/incubator-ponymail-foal.git
-</pre></p>
-<p>Set up Pony Mail:
+</pre>
+
+<p>Set up Pony Mail:</p>
<pre>
cd /var/www/ponymail/tools
sudo python3.4 setup.py
[... answer questions asked by the setup script ...]
-</pre></p>
+</pre>
+
<p>Set up Apache httpd by adding, for example, the following virtual host
configuration:
This differs from the normal installation (because of CentOS specifics), so
beware</p>
<pre>
@@ -154,7 +157,7 @@ much more.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/install.ubuntu.html b/content/docs/install.ubuntu.html
index ae6446b..117fca0 100644
--- a/content/docs/install.ubuntu.html
+++ b/content/docs/install.ubuntu.html
@@ -51,48 +51,55 @@
sudo apt-get install apache2 git liblua5.2-dev lua-cjson lua-sec lua-socket
python3 python3-pip subversion
</pre>
-<p>Install the required Python 3 modules:
+<p>Install the required Python 3 modules:</p>
<pre>
sudo pip3 install elasticsearch formatflowed netaddr
-</pre></p>
-<p>Install ElasticSearch:
+</pre>
+
+<p>Install ElasticSearch:</p>
<pre>
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key
add -
echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" |
sudo tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list
-sudo apt-get update && sudo apt-get install elasticsearch
default-jre-headless
-</pre></p>
-<p>Compile and install mod_lua if necessary (httpd < 2.4.17 on Ubuntu):
+sudo apt-get update && sudo apt-get install elasticsearch default-jre-headless
+</pre>
+
+<p>Compile and install mod_lua if necessary (httpd < 2.4.17 on Ubuntu):</p>
<pre>
sudo apt-get install apache2-dev
svn co https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x/modules/lua/
cd lua/
sudo apxs -I/usr/include/lua5.2 -cia mod_lua.c lua_*.c -lm -llua5.2
-</pre></p>
-<p>Check out a copy of Pony Mail:
+</pre>
+
+<p>Check out a copy of Pony Mail:</p>
<pre>
sudo git clone https://github.com/apache/incubator-ponymail-foal.git
/var/www/ponymail
-</pre></p>
-<p>Configure Elasticsearch to automatically start during bootup. For Ubuntu
<= 14.10:
+</pre>
+
+<p>Configure Elasticsearch to automatically start during bootup. For Ubuntu
<= 14.10:</p>
<pre>
sudo update-rc.d elasticsearch defaults 95 10
-</pre></p>
-<p>For Ubuntu >= 15.04:
+</pre>
+
+<p>For Ubuntu >= 15.04:</p>
<pre>
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable elasticsearch.service
-</pre></p>
+</pre>
+
<p>Start up ElasticSearch:</p>
<pre>
sudo service elasticsearch start
</pre>
-<p>Set up Pony Mail:
+<p>Set up Pony Mail:</p>
<pre>
cd /var/www/ponymail/tools
sudo python3 setup.py
[... answer questions asked by the setup script ...]
-</pre></p>
-<p>Set up Apache httpd by adding, for example, the following virtual host
configuration (e.g. in
<code>/etc/apache2/sites-enabled/000-default.conf</code>):
+</pre>
+
+<p>Set up Apache httpd by adding, for example, the following virtual host
configuration (e.g. in
<code>/etc/apache2/sites-enabled/000-default.conf</code>):</p>
<pre>
<VirtualHost *:80>
ServerName mylists.foo.tld
@@ -102,7 +109,8 @@ sudo python3 setup.py
LuaCodeCache stat
AcceptPathInfo On
</VirtualHost>
-</pre></p>
+</pre>
+
<p>Enable mod_lua and start apache, if not already enabled:</p>
<pre>
sudo a2enmod lua
@@ -140,7 +148,7 @@ much more.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/docs/installing.html b/content/docs/installing.html
index 90923e1..0529235 100644
--- a/content/docs/installing.html
+++ b/content/docs/installing.html
@@ -239,7 +239,7 @@ Please see <a
href="archiving.html#usingtherightidgenerator">this paragraph</a>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/downloads.html b/content/downloads.html
index f5ad1d8..c9b6dad 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -36,7 +36,7 @@
</div>
<h1 id='downloadapacheponymailincubating'>Download Apache Pony Mail
(Incubating)<a href='#downloadapacheponymailincubating' style='color:
rgba(0,0,0,0);'>¶</a></h1>
<p>Be sure to <a href="https://www.apache.org/info/verification">verify your
downloads</a> using the folowing <a
href="https://downloads.apache.org/incubator/ponymail/KEYS">KEYS</a>.</p>
-<p>There have not yet been any releases of Ponymail Foal.</p>
+<p>There has been no release of Pony Mail Foal yet.</p>
<p>The latest release of Pony Mail (original) is 0.11, released on 2019-04-20.
You can fetch it here:</p>
<p><a
href="https://www.apache.org/dyn/closer.lua/incubator/ponymail/apache-pony-mail-0.11-incubating.tar.gz">Download
Apache Pony Mail (Incubating) 0.11 from a mirror</a>
Verify:
@@ -282,7 +282,7 @@ Verify:
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/index.html b/content/index.html
index 05a96ef..e3294e3 100644
--- a/content/index.html
+++ b/content/index.html
@@ -128,7 +128,7 @@ list size and available bandwidth.</p>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/source.html b/content/source.html
index 79e5d31..b15ac04 100644
--- a/content/source.html
+++ b/content/source.html
@@ -66,7 +66,7 @@
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>
diff --git a/content/support.html b/content/support.html
index 4cb57dc..14822da 100644
--- a/content/support.html
+++ b/content/support.html
@@ -100,7 +100,7 @@
<a class="item" target="_blank"
href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/foundation/sponsorship.html">Become a
Sponsor<span></span></a><br/>
<a class="item" target="_blank"
href="https://www.apache.org/security/">Security<span></span></a><br/>
- <a class="item" target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
+ <a class="item" target="_blank"
href="https://www.apache.org/licenses/">License<span></span></a><br/>
</div>
</div>
</body></html>