This is an automated email from the ASF dual-hosted git repository.
rcordier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git
The following commit(s) were added to refs/heads/master by this push:
new 3a25a90 [Document] Update docker-compose, sample configuration links
3a25a90 is described below
commit 3a25a903048a59f5f648741ccf661cfeec310aff
Author: Tung Van TRAN <[email protected]>
AuthorDate: Mon Mar 14 14:58:03 2022 +0700
[Document] Update docker-compose, sample configuration links
---
docs/modules/community/pages/release.adoc | 2 +-
server/grafana-reporting/es-datasource/README.md | 2 +-
src/homepage/_posts/2020-07-16-james-3.5.0.markdown | 2 +-
src/homepage/howTo/custom-listeners.html | 4 ++--
src/homepage/howTo/deleted-messages-vault.html | 4 ++--
src/homepage/howTo/imap-server.html | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/docs/modules/community/pages/release.adoc
b/docs/modules/community/pages/release.adoc
index f03df3b..34bbfc9 100644
--- a/docs/modules/community/pages/release.adoc
+++ b/docs/modules/community/pages/release.adoc
@@ -217,7 +217,7 @@ Docker images includes:
- apache/james:jpa-3.x.x built from
https://github.com/apache/james-project/tree/master/server/apps/jpa-app
- apache/james:demo-3.x.x built from
https://github.com/apache/james-project/tree/master/server/apps/provisioned-app
- apache/james:cassandra-3.x.x build from
https://github.com/apache/james-project/tree/master/server/apps/cassandra-app
-- apache/james:distributed-3.x.x built from
https://github.com/apache/james-project/tree/master/dockerfiles/server/apps/distributed-app
+- apache/james:distributed-3.x.x built from
https://github.com/apache/james-project/tree/master/server/apps/distributed-app
As a committer contact the INFRA and hand them your docker-hub account to get
the permission.
diff --git a/server/grafana-reporting/es-datasource/README.md
b/server/grafana-reporting/es-datasource/README.md
index e275948..5dd4c4d 100644
--- a/server/grafana-reporting/es-datasource/README.md
+++ b/server/grafana-reporting/es-datasource/README.md
@@ -54,7 +54,7 @@ or paste the files into Grafana dashboards folder
(/var/lib/grafana/dashboards b
You then need to enable James to report its stats into ElasticSearch.
Modify your James ElasticSearch configuration file accordingly.
-To help you doing this, you can take a look to
[GitHub](https://github.com/apache/james-project/blob/master/dockerfiles/run/guice/cassandra/destination/conf/elasticsearch.properties).
+To help you doing this, you can take a look to
[GitHub](https://github.com/apache/james-project/blob/master/server/apps/cassandra-app/sample-configuration/elasticsearch.properties).
Note that you need to run a guice version of James.
## Presentation of the different boards
diff --git a/src/homepage/_posts/2020-07-16-james-3.5.0.markdown
b/src/homepage/_posts/2020-07-16-james-3.5.0.markdown
index 55322ce..43fcf15 100644
--- a/src/homepage/_posts/2020-07-16-james-3.5.0.markdown
+++ b/src/homepage/_posts/2020-07-16-james-3.5.0.markdown
@@ -103,5 +103,5 @@ More details about the property is at [java mail
doc](https://javaee.github.io/j
[ElasticSearch]: https://www.elastic.co/elasticsearch/
[RabbitMQ]: https://www.rabbitmq.com/
[objectStorage (S3/Swift)]: https://wiki.openstack.org/wiki/Swift
-[docker-compose]:
https://github.com/apache/james-project/blob/master/dockerfiles/run/docker-compose.yml
+[docker-compose]:
https://github.com/apache/james-project/blob/3.5.x/dockerfiles/run/docker-compose.yml
[standard installation guide]:
/server/install/guice-cassandra-rabbitmq-swift.html
\ No newline at end of file
diff --git a/src/homepage/howTo/custom-listeners.html
b/src/homepage/howTo/custom-listeners.html
index ee89f4f..c0c7f81 100644
--- a/src/homepage/howTo/custom-listeners.html
+++ b/src/homepage/howTo/custom-listeners.html
@@ -101,7 +101,7 @@ layout: howTo
<p>First, get template JPA product configuration:</p>
<pre><code>
$ git clone https://github.com/apache/james-project
-$ cp -rf james-project/dockerfiles/run/guice/jpa/destination/conf conf
+$ cp -rf james-project/server/apps/jpa-app/sample-configuration conf
</code></pre>
<p>Then create the keystore file in the conf/ directory with
the default password <code>james72laBalle</code>
@@ -124,7 +124,7 @@ $ keytool -genkey -alias james -keyalg RSA -keystore
conf/keystore
<p>Finally, starting a James Server by docker compose</p>
<p>Getting James docker-compose.yml</p>
<pre><code>
-$ wget
https://raw.githubusercontent.com/apache/james-project/master/dockerfiles/run/docker-compose.yml
+$ wget
https://raw.githubusercontent.com/apache/james-project/master/server/apps/jpa-app/docker-compose.yml
</code></pre>
<p>Using James Guice JPA instead of the default product</p>
<pre><code>
diff --git a/src/homepage/howTo/deleted-messages-vault.html
b/src/homepage/howTo/deleted-messages-vault.html
index 344c96b..f122c4a 100644
--- a/src/homepage/howTo/deleted-messages-vault.html
+++ b/src/homepage/howTo/deleted-messages-vault.html
@@ -261,7 +261,7 @@ blob.export.implementation=localFile
<pre><code>
$ git clone https://github.com/apache/james-project
-$ cp -rf
james-project/dockerfiles/run/guice/cassandra-rabbitmq/destination/conf conf
+$ cp -rf james-project/server/apps/distributed-app/sample-configuration conf
</code></pre>
<p>Then create the keystore file in the conf/ directory with
the default password <code>james72laBalle</code>
@@ -290,7 +290,7 @@ $ mkdir var
<p>Getting James docker-compose.yml</p>
<pre><code>
-$ wget
https://raw.githubusercontent.com/apache/james-project/master/dockerfiles/run/docker-compose.yml
+$ wget
https://raw.githubusercontent.com/apache/james-project/master/server/apps/distributed-app/docker-compose.yml
</code></pre>
<p>Add the following volumes for james service:</p>
diff --git a/src/homepage/howTo/imap-server.html
b/src/homepage/howTo/imap-server.html
index b4adf58..fd87aed 100644
--- a/src/homepage/howTo/imap-server.html
+++ b/src/homepage/howTo/imap-server.html
@@ -152,7 +152,7 @@ layout: howTo
<p>First let's retrieve a valid configuration:</p>
<pre><code>$ git clone https://github.com/apache/james-project
-$ cp -rf james-project/dockerfiles/run/guice/jpa/destination/conf conf
+$ cp -rf james-project/server/apps/jpa-app/sample-configuration conf
$ mv keystore conf/keystore</code></pre>
<p>Modify all protocol configuration files to match your
keystore password (imapserver.xml, lmtpserver.xml, managesieveserver.xml,
pop3server.xml, smtpserver.xml).</p>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]