You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by bt...@apache.org on 2018/07/06 09:27:44 UTC

[18/21] james-project git commit: JAMES-2435 Fix some typos on how-tos

JAMES-2435 Fix some typos on how-tos


Project: http://git-wip-us.apache.org/repos/asf/james-project/repo
Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/de03819e
Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/de03819e
Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/de03819e

Branch: refs/heads/master
Commit: de03819e06a6ac3221f1f595745192039bcbf8ef
Parents: e9ff0dc
Author: Raphael Ouazana <ra...@linagora.com>
Authored: Thu Jul 5 15:56:09 2018 +0200
Committer: benwa <bt...@linagora.com>
Committed: Fri Jul 6 16:26:34 2018 +0700

----------------------------------------------------------------------
 src/homepage/howTo/imap-server.html     | 8 ++++----
 src/homepage/howTo/index.html           | 4 ++--
 src/homepage/howTo/mail-processing.html | 6 +++---
 src/homepage/howTo/spf.html             | 6 +++---
 4 files changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/james-project/blob/de03819e/src/homepage/howTo/imap-server.html
----------------------------------------------------------------------
diff --git a/src/homepage/howTo/imap-server.html b/src/homepage/howTo/imap-server.html
index aff1bb2..8459f4c 100644
--- a/src/homepage/howTo/imap-server.html
+++ b/src/homepage/howTo/imap-server.html
@@ -76,7 +76,7 @@ layout: default
                     </header>
 
                     <p>
-                        Someone willing to send you an email will first have to discover which IP your mail server have.
+                        Someone willing to send you an email will first have to discover which IP your mail server has.
                         The way this is achieved is through MX (means Mail eXchange) DNS record.
                     </p>
 
@@ -88,7 +88,7 @@ layout: default
                         <li>Ask <code>company.com</code> DNS server its MX entries</li>
                         <li><code>company.com</code> respond that it is <code>mx.company.com</code></li>
                         <li>Bob resolves <code>mx.company.com</code> ip address...</li>
-                        <li>And can establish a connection to <code>mx.company.com</code> to send an email to Alice</li>
+                        <li>...and can establish a connection to <code>mx.company.com</code> to send an email to Alice</li>
                     </ol>
 
                     <p>All is needed is a MX entry in domain name resolution pointing to the future IP of your James server.</p>
@@ -97,7 +97,7 @@ layout: default
                         <h2><b>JAMES architecture</b></h2>
                     </header>
 
-                    <p>JPA guice docker image relies on an embedded derby database for storing data. Note that Apache Lucene library
+                    <p>JPA guice docker image relies on an embedded Derby database for storing data. Note that Apache Lucene library
                         is used for email search. A mail queue is implemented on top of an embedded Apache ActiveMQ. Hence James do not need
                         any external service for being running.
                     </p>
@@ -176,7 +176,7 @@ linagora/james-jpa-guice:latest</code></pre>
                     <pre><code>docker exec james_run java -jar /root/james-cli.jar AddDomain domain.tld
 docker exec james_run java -jar /root/james-cli.jar AddUser user@domain.tld secretPassword</code></pre>
 
-                    <p>The command line client can be used for several other purposes like managing quota, setting addresses redirections, etc..</p>
+                    <p>The command line client can be used for several other purposes like managing quota, setting addresses redirections, etc.</p>
 
                     <header class="major">
                         <h2><b>Additional features</b></h2>

http://git-wip-us.apache.org/repos/asf/james-project/blob/de03819e/src/homepage/howTo/index.html
----------------------------------------------------------------------
diff --git a/src/homepage/howTo/index.html b/src/homepage/howTo/index.html
index 127ba6a..0c1b1b7 100644
--- a/src/homepage/howTo/index.html
+++ b/src/homepage/howTo/index.html
@@ -52,8 +52,8 @@ layout: default
               <header class="major">
                 <h2>James how to's...</h2>
               </header>
-              <p class="align-left">James can be used for a wide variety of cases here is a little list of what you can use it for.<br/>
-                This section explains in detail how to achieve these cool features in a straightforward way...</p>
+              <p class="align-left">James can be used for a wide variety of cases. Here is a little list of what you can use it for.<br/>
+                This section explains in detail how to achieve these cool features in a straightforward way.</p>
 
               <a href="mail-processing.html"
                  data-lightbox="james-schema"

http://git-wip-us.apache.org/repos/asf/james-project/blob/de03819e/src/homepage/howTo/mail-processing.html
----------------------------------------------------------------------
diff --git a/src/homepage/howTo/mail-processing.html b/src/homepage/howTo/mail-processing.html
index 9c07441..ba09342 100644
--- a/src/homepage/howTo/mail-processing.html
+++ b/src/homepage/howTo/mail-processing.html
@@ -50,7 +50,7 @@ layout: default
           <div class="">
             <div class="content align-left">
               <header class="major">
-                <h1>How to customize mail processing...</h1>
+                <h1>How to customize mail processing</h1>
               </header>
                 <header class="major">
                     <h2><b>Mail processing component overview</b></h2>
@@ -163,7 +163,7 @@ layout: default
               <p>Note that we can interact with the mail server through the mailet context for sending mails, knowing postmaster, etc...</p>
 
                 <p><b>GenericMailet</b> exposes us the 'init parameters' that had been configured for this mailet. We will
-                    use it to retireve <b>reason</b> and <b>promotionCode</b>.
+                    use it to retrieve <b>reason</b> and <b>promotionCode</b>.
                     We can do it in the <b>init()</b> method exposed by the generic mailet:</p>
 
                 <pre><code>    @Override
@@ -179,7 +179,7 @@ layout: default
         }
     }</code></pre>
 
-            <p>You can retrieve the sources of this mini-project on <a href="https://github.com/apache/james-project/examples/custom-mailets">GitHub</a></p>
+            <p>You can retrieve the sources of this mini-project on <a href="https://github.com/apache/james-project/tree/master/examples/custom-mailets">GitHub</a></p>
 
             <header class="major">
                <h2><b>Loading custom mailets with James</b></h2>

http://git-wip-us.apache.org/repos/asf/james-project/blob/de03819e/src/homepage/howTo/spf.html
----------------------------------------------------------------------
diff --git a/src/homepage/howTo/spf.html b/src/homepage/howTo/spf.html
index a0b69e9..023c3a1 100644
--- a/src/homepage/howTo/spf.html
+++ b/src/homepage/howTo/spf.html
@@ -60,7 +60,7 @@ layout: default
 
                     <p>
                         The Sender Policy Framework (SPF) is an open standard specifying a technical method to prevent
-                        sender address forgery, might help you to do this.
+                        sender address forgery. It might help you to do this.
                     </p>
 
                     <p>
@@ -88,7 +88,7 @@ layout: default
                     <pre><code>@ IN TXT “v=spf1 +a:james.test-domain.com -all”
 @ IN SPF “v=spf1 +a:james.test-domain.com -all”</code></pre>
 
-                    <p>That way other mail servers knows only <i>james.test-domain.com</i> can send mails for <i>test-domain.com</i>.</p>
+                    <p>That way other mail servers know only <i>james.test-domain.com</i> can send mails for <i>test-domain.com</i>.</p>
 
 
                     <header class="major">
@@ -98,7 +98,7 @@ layout: default
                     <p>
                         Now we will see how to verify SPF records of incoming emails. For this we can customize mail processing,
                         and specify actions upon SPF record validity. For introducing these components, James relies on the
-                        <a href="https://james.apache.org/jspf/">JSPF</a>library.
+                        <a href="https://james.apache.org/jspf/">JSPF</a> library.
                     </p>
 
                     <p>We just need to edit the <code>mailetcontainer.xml</code> configuration file as follow:</p>


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org