IMAP-370 Add MOVE extension to supported commands in documentation
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/6ffe855a Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/6ffe855a Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/6ffe855a Branch: refs/heads/master Commit: 6ffe855a07220f6a45cfbd7bbec0602c5f3327f4 Parents: 33a53fa Author: Benoit Tellier <[email protected]> Authored: Fri Feb 26 11:27:43 2016 +0700 Committer: Benoit Tellier <[email protected]> Committed: Fri Mar 4 19:35:24 2016 +0700 ---------------------------------------------------------------------- protocols/src/site/xdoc/imap4.xml | 7 ++++--- server/src/site/xdoc/feature-protocols.xml | 20 +++++++++++++++++--- 2 files changed, 21 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/6ffe855a/protocols/src/site/xdoc/imap4.xml ---------------------------------------------------------------------- diff --git a/protocols/src/site/xdoc/imap4.xml b/protocols/src/site/xdoc/imap4.xml index 909e5f4..ee37a0a 100644 --- a/protocols/src/site/xdoc/imap4.xml +++ b/protocols/src/site/xdoc/imap4.xml @@ -14,7 +14,7 @@ software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - specific language govaerning permissions and limitations + specific language governing permissions and limitations under the License. --> @@ -56,10 +56,11 @@ <li>ENABLE (in release 0.2.1)</li> <li>CONDSTORE (RFC 4551 http://www.ietf.org/rfc/rfc4551.txt in release 0.3)</li> <li>RESYNCH (RFC 5162 http://www.ietf.org/rfc/rfc5162.txt in trunk)</li> + <li>MOVE (RFC 6851 https://tools.ietf.org/html/rfc6851 in trunk). This is enabled only if you use a MailboxManager exposing the Move capability</li> </ul> - <p>We follow RFC2683 recommandations for our implementations:</p> + <p>We follow RFC2683 recommendations for our implementations:</p> <ul> - <li>IMAP4 Implementation Recommandations (RFC 2683 http://www.ietf.org/rfc/rfc2683.txt)</li> + <li>IMAP4 Implementation Recommendations (RFC 2683 http://www.ietf.org/rfc/rfc2683.txt)</li> </ul> <p>Interesting features:</p> <ul> http://git-wip-us.apache.org/repos/asf/james-project/blob/6ffe855a/server/src/site/xdoc/feature-protocols.xml ---------------------------------------------------------------------- diff --git a/server/src/site/xdoc/feature-protocols.xml b/server/src/site/xdoc/feature-protocols.xml index 687ddb3..a479726 100644 --- a/server/src/site/xdoc/feature-protocols.xml +++ b/server/src/site/xdoc/feature-protocols.xml @@ -52,7 +52,10 @@ client/server communication.</p> <p>More information on configuring the SMTP service can be found <a href="config-smtp-lmtp.html">here</a>.</p> - + + <p>You can find further information about supported protocols and RFCs + <a href="http://james.apache.org/protocols/smtp.html">on the JAMES-PROTOCOLS project SMTP page</a> + </p> </subsection> <subsection name="IMAP4 Protocol"> @@ -66,7 +69,15 @@ IMAP4 client connecting to the server.</p> <p>More information on configuring the IMAP4 service can be found <a href="config-imap4.html">here</a>.</p> - + + <p>You can find further information about supported protocols and RFCs + <a href="http://james.apache.org/protocols/imap4.html">on the JAMES-PROTOCOLS project IMAP4 page</a> + </p> + + <p> + Note that MOVE extension (RFC-6851) needs a MailboxManager implementing the move function. For now, this is only done with + the CassandraMailboxManager + </p> </subsection> <subsection name="POP3 Protocol"> @@ -80,7 +91,10 @@ POP3 client connecting to the server.</p> <p>More information on configuring the POP3 service can be found <a href="config-pop3.html">here</a>.</p> - + + <p>You can find further information about supported protocols and RFCs + <a href="http://james.apache.org/protocols/pop3.html">on the JAMES-PROTOCOLS project POP3 page</a> + </p> </subsection> <subsection name="FetchMail"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
