You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by bu...@apache.org on 2012/11/15 14:09:01 UTC

svn commit: r838429 [2/9] - in /websites/staging/mina/trunk/content: ./ asyncweb-project/ ftpserver-project/ vysper-project/

Added: websites/staging/mina/trunk/content/ftpserver-project/configuration_passive_ports.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/configuration_passive_ports.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/configuration_passive_ports.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,164 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer Configure passive ports &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="configure-passive-ports">Configure passive ports</h1>
+<p>When the client wants to use a passive data connection, the server should provide the port to use. By default, FtpServer will choose any available port. However this can be overridden using the configuration for the <a href="configuration_listeners.html">passive data connection</a>. The allowed passive ports can then be specified as a single port (e.g. 20020), multiple ports (e.g. 20020, 20030, 20040) or a range of ports (e.g. 20020-20030). Ranges can be closed (e.g. 20020-20030) or open ended (e.g. 60000-). Open ended ranges start at 1 and end at 65535, that is, the range 60000- will allow all ports between 60000 and 65535. Any combination of specified values or ranges can be used.</p>
+<p>When the server has used up all passive ports (one per client doing passive data transfer), the next clients will have to wait for an available port. It is therefore advised to provide multiple passive ports.</p>
+<p>If a value (specific port or start or end of an range) is outside of the allowed values of 0 and 65535, an error will be thrown at startup.</p>
+<h2 id="examples">Examples:</h2>
+<table>
+<thead>
+<tr>
+<th></th>
+<th></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>0</td>
+<td>Any available port is used as the passive port</td>
+</tr>
+<tr>
+<td>123</td>
+<td>Port 123 will be used as the passive port</td>
+</tr>
+<tr>
+<td>123,133</td>
+<td>Port 123 and 133 will be used as the passive port</td>
+</tr>
+<tr>
+<td>123-125</td>
+<td>Any port in a range from 123 to 125 will be used as the passive port</td>
+</tr>
+<tr>
+<td>123-125, 127, 129-130</td>
+<td>Any port in a range from 123 to 125, port 127 or in the range from 129 to 130 will be used as the passive port</td>
+</tr>
+</tbody>
+</table>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/configuration_server.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/configuration_server.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/configuration_server.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,201 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer Server &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="server">Server</h1>
+<p>Some configuration is done for the entire server. This affects all listeners, for login limits, the sum of the logins for all listeners are enforced.</p>
+<p>Using the XML configuration, this following examples shows all available configurations for the server</p>
+<div class="codehilite"><pre><span class="nt">&lt;server</span> <span class="na">xmlns=</span><span class="s">&quot;http://mina.apache.org/ftpserver/spring/v1&quot;</span>
+    <span class="na">xmlns:xsi=</span><span class="s">&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span>
+    <span class="na">xsi:schemaLocation=</span><span class="s">&quot;http://mina.apache.org/ftpserver/spring/v1 http://mina.apache.org/ftpserver/ftpserver-1.0.xsd&quot;</span>
+    <span class="na">id=</span><span class="s">&quot;server&quot;</span>     
+    <span class="na">max-logins=</span><span class="s">&quot;500&quot;</span>
+    <span class="na">anon-enabled=</span><span class="s">&quot;false&quot;</span>
+    <span class="na">max-anon-logins=</span><span class="s">&quot;123&quot;</span>
+    <span class="na">max-login-failures=</span><span class="s">&quot;124&quot;</span>
+    <span class="na">login-failure-delay=</span><span class="s">&quot;125&quot;</span><span class="nt">&gt;</span>
+...
+<span class="nt">&lt;/server&gt;</span>
+</pre></div>
+
+
+<h2 id="server-element">server element</h2>
+<table>
+<thead>
+<tr>
+<th>Attribute</th>
+<th>Description</th>
+<th>Required</th>
+<th>Default value</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>id</td>
+<td>A unique identifier for this server within this XML configiration</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>max-threads</td>
+<td>The maximum number of threads used in the thread pool for handling client connections</td>
+<td>No</td>
+<td>max-logins, or 16 if neither value is set</td>
+</tr>
+<tr>
+<td>max-logins</td>
+<td>The maximum number of simultaneous users</td>
+<td>No</td>
+<td>10</td>
+</tr>
+<tr>
+<td>max-anon-logins</td>
+<td>The maximum number of simultaneous anonymous users</td>
+<td>No</td>
+<td>10</td>
+</tr>
+<tr>
+<td>anon-enabled</td>
+<td>Are anonymous logins enabled?</td>
+<td>No</td>
+<td>true</td>
+</tr>
+<tr>
+<td>max-login-failures</td>
+<td>The number of failed login attempts before the connection is closed</td>
+<td>No</td>
+<td>3</td>
+</tr>
+<tr>
+<td>login-failure-delay</td>
+<td>The number of milliseconds that the connection is delayed after a failed login attempt. Used to limit to possibility of brute force guessing passwords.</td>
+<td>No</td>
+<td>500</td>
+</tr>
+</tbody>
+</table>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/configuration_ssltls_support.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/configuration_ssltls_support.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/configuration_ssltls_support.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,175 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer TLS-SSL Support &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="tls-ssl-support">TLS-SSL Support</h1>
+<p>This document explains how to enable Apache FTP Server to use Transport Layer Security (TLS) for encrypted client-server communication.</p>
+<p>FtpServer uses the Java Secure Sockets Extension (JSSE) infrastructure to provide TLS/SSL sockets. JSSE comes packaged with several vendor Java distributions (i.e. Sun Java 1.4.x, IBM Java 1.3.x). For these distributions, please follow the vendor provided instructions for configuring the JVM to use JSSE services.</p>
+<h2 id="security-mode">Security mode</h2>
+<h3 id="explicit-security-default">Explicit Security (default)</h3>
+<p>In this mode server supports both secure and non-secure connection. Upon request from client (AUTH SSL) the server switches to the SSL/TLS mode.</p>
+<p>In this case, the listener should not use implicit SSL (the default value):</p>
+<div class="codehilite"><pre><span class="nt">&lt;nio-listener</span> <span class="na">name=</span><span class="s">&quot;default&quot;</span> <span class="na">implicit-ssl=</span><span class="s">&quot;false&quot;</span><span class="nt">&gt;</span>
+</pre></div>
+
+
+<h3 id="implicit-security">Implicit Security</h3>
+<p>If you want to use implicit SSL connection, that is, SSL is always enabled on the control socket. The first thing you need to do is to tell the listener to use implicit SSL mode:</p>
+<div class="codehilite"><pre><span class="nt">&lt;nio-listener</span> <span class="na">name=</span><span class="s">&quot;default&quot;</span> <span class="na">implicit-ssl=</span><span class="s">&quot;true&quot;</span><span class="nt">&gt;</span>
+</pre></div>
+
+
+<p>If you set the listener to use implicit security, enabling implicit security for the data connection should be conside</p>
+<h3 id="data-connection-security">Data connection security</h3>
+<p>Implicit secure listener does not ensure encrypted data transfer. To use SSL/TLS in data connection, client either has to send "PROT P" command or implicit security must be enabled for the data connection.</p>
+<div class="codehilite"><pre><span class="nt">&lt;data-connection</span> <span class="na">implicit-ssl=</span><span class="s">&quot;true&quot;</span><span class="nt">&gt;</span>
+</pre></div>
+
+
+<p>If no explicit configuration for SSL keystores and truststores is provided for the data connection, it will be inherited from the listener. This is the normal configuration.</p>
+<p>Different FTP clients behave different with regards to implicit security on the data connection, some assume an SSL enabled socket, while some will always send a "PROT P" command. The following table shows the characteristics of some clients, please report others.</p>
+<table>
+<thead>
+<tr>
+<th>FTP client</th>
+<th>Behavior</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>FileZilla</td>
+<td>Sends "PROT P" command automatically in implicit security mode</td>
+</tr>
+<tr>
+<td>DartFTP/PowerTCP</td>
+<td>Assumes an SSL enabled data connection, does not send "PROT P"</td>
+</tr>
+</tbody>
+</table>
+<h3 id="detailed-configuration">Detailed configuration</h3>
+<p>Full documentation on all provided configuration is available on the <a href="configuration_listeners.html">Listeners</a> page</p>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,138 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer User Manager &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="user-manager">User Manager</h1>
+<h2 id="built-in-user-managers">Built in user managers</h2>
+<p>FtpServer comes with two different user managers:</p>
+<ul>
+<li><a href="configuration_user_manager_file.html">File based user manager</a></li>
+<li><a href="configuration_user_manager_db.html">Database user manager</a></li>
+</ul>
+<h2 id="custom-user-manager">Custom User Manager</h2>
+<p>You can write your own user manager to integrate it with your existing applications. Your custom user manager should implement org.apache.ftpserver.ftplet.UserManager interface. In your configuration file, you will have to use the Spring bean element to configure your custom user manager. This gives you all the power of Spring, for example integrating with your other beans. You can also provide a custom XML format by using the Spring XML extension mechanisms.</p>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager_db.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager_db.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager_db.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,332 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer Database user manager &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="database-user-manager">Database user manager</h1>
+<p>You can store user user information in a database. JDBC is used to access the database. This user manager has been tested using MySQL, HSQLDB and FireBird database. All the user informations are stored in FTP_USER table. An example DDL file for the database is provided in <INSTALL_DIR>/res/ftp-db.sql.</p>
+<h2 id="database-jdbc-libraries">Database JDBC libraries</h2>
+<p>You must include the required JAR files for your database in the classpath of FtpServer. Typically you would do this by placing the JAR files in <INSTALL_DIR>/common/lib.</p>
+<h2 id="example">Example</h2>
+<div class="codehilite"><pre><span class="nt">&lt;db-user-manager</span> <span class="na">encrypt-passwords=</span><span class="s">&quot;salted&quot;</span><span class="nt">&gt;</span>
+    <span class="nt">&lt;data-source&gt;</span>
+        <span class="nt">&lt;beans:bean</span> <span class="na">class=</span><span class="s">&quot;some.datasoure.class&quot;</span> <span class="nt">/&gt;</span>
+    <span class="nt">&lt;/data-source&gt;</span>
+    <span class="nt">&lt;insert-user&gt;</span>INSERT INTO FTP_USER (userid, userpassword,
+        homedirectory, enableflag, writepermission, idletime, uploadrate,
+        downloadrate) VALUES (&#39;{userid}&#39;, &#39;{userpassword}&#39;, &#39;{homedirectory}&#39;,
+        &#39;{enableflag}&#39;, &#39;{writepermission}&#39;, {idletime}, {uploadrate},
+        {downloadrate})<span class="nt">&lt;/insert-user&gt;</span>
+    <span class="nt">&lt;update-user&gt;</span>
+        UPDATE FTP_USER SET
+            userpassword=&#39;{userpassword}&#39;,
+            homedirectory=&#39;{homedirectory}&#39;,
+            enableflag={enableflag},
+            writepermission={writepermission},
+            idletime={idletime},
+            uploadrate={uploadrate},
+            downloadrate={downloadrate}
+        WHERE userid=&#39;{userid}&#39;
+    <span class="nt">&lt;/update-user&gt;</span>
+    <span class="nt">&lt;delete-user&gt;</span>
+        DELETE FROM FTP_USER WHERE userid = &#39;{userid}&#39;
+    <span class="nt">&lt;/delete-user&gt;</span>
+    <span class="nt">&lt;select-user&gt;</span>
+        SELECT userid, userpassword, homedirectory,
+            enableflag, writepermission, idletime, uploadrate, downloadrate 
+        FROM FTP_USER 
+        WHERE userid = &#39;{userid}&#39;
+    <span class="nt">&lt;/select-user&gt;</span>
+    <span class="nt">&lt;select-all-users&gt;</span>
+        SELECT userid FROM FTP_USER ORDER BY userid
+    <span class="nt">&lt;/select-all-users&gt;</span>
+    <span class="nt">&lt;is-admin&gt;</span>
+        SELECT userid 
+        FROM FTP_USER 
+        WHERE userid=&#39;{userid}&#39; AND userid=&#39;admin&#39;
+        <span class="nt">&lt;/is-admin&gt;</span>
+    <span class="nt">&lt;authenticate&gt;</span>SELECT userpassword from FTP_USER WHERE userid=&#39;{userid}&#39;<span class="nt">&lt;/authenticate&gt;</span>
+<span class="nt">&lt;/db-user-manager&gt;</span>
+</pre></div>
+
+
+<h2 id="configuration-parameters">Configuration Parameters</h2>
+<h3 id="db-user-manager-element">db-user-manager element</h3>
+<table>
+<thead>
+<tr>
+<th>Attribute</th>
+<th>Description</th>
+<th>Required</th>
+<th>Default value</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>encrypt-passwords</td>
+<td>It indicates how to stored password are encrypted. Possible values are "clear" for clear text, "md5" for hashed using MD5 or "salted" for hashed salted passwords (including multiple hash iterations). "salted" is encouraged.</td>
+<td>No</td>
+<td>md5</td>
+</tr>
+</tbody>
+</table>
+<table>
+<thead>
+<tr>
+<th>Child element</th>
+<th>Description</th>
+<th>Required</th>
+<th>Default value</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>data-source</td>
+<td>The data source configured using the regular Spring bean element</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>insert-user</td>
+<td>The SQL statement to insert a new user. All the dynamic values will be replaced during runtime.</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>update-user</td>
+<td>The SQL statement to update a user. All the dynamic values will be replaced during runtime.</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>delete-user</td>
+<td>The SQL statement to delete a user. All the dynamic values will be replaced during runtime.</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>select-user</td>
+<td>The SQL statement to select a user. All the dynamic values will be replaced during runtime.</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>select-all-users</td>
+<td>The SQL statement to select all users. All the dynamic values will be replaced during runtime.</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>is-admin</td>
+<td>The SQL statement to find whether an user is admin or not. All the dynamic values will be replaced during runtime.</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>authenticate</td>
+<td>The SQL statement to authenticate a user. All the dynamic values will be replaced during runtime.</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+</tbody>
+</table>
+<h3 id="data-source-configuration">Data source configuration</h3>
+<p>The data source must be configured as described by the database provider. You can also use the general purpose <a href="http://jakarta.apache.org/commons/dbcp/apidocs/org/apache/commons/dbcp/BasicDataSource.html">BasicDataSource</a> provided by the <a href="http://jakarta.apache.org/commons/dbcp/">Apache Commons DBCP project</a>.</p>
+<h4 id="example-using-the-basicdatasource-to-connect-to-mysql">Example using the BasicDataSource to connect to MySQL</h4>
+<div class="codehilite"><pre><span class="nt">&lt;data-source&gt;</span>
+    <span class="nt">&lt;beans:bean</span> <span class="na">class=</span><span class="s">&quot;org.apache.commons.dbcp.BasicDataSource&quot;</span><span class="nt">&gt;</span>
+        <span class="nt">&lt;beans:property</span> <span class="na">name=</span><span class="s">&quot;driverClassName&quot;</span> <span class="na">value=</span><span class="s">&quot;com.mysql.jdbc.Driver&quot;</span> <span class="nt">/&gt;</span>
+        <span class="nt">&lt;beans:property</span> <span class="na">name=</span><span class="s">&quot;url&quot;</span> <span class="na">value=</span><span class="s">&quot;jdbc:mysql://localhost/ftpd&quot;</span> <span class="nt">/&gt;</span>
+        <span class="nt">&lt;beans:property</span> <span class="na">name=</span><span class="s">&quot;username&quot;</span> <span class="na">value=</span><span class="s">&quot;myuser&quot;</span> <span class="nt">/&gt;</span>
+        <span class="nt">&lt;beans:property</span> <span class="na">name=</span><span class="s">&quot;password&quot;</span> <span class="na">value=</span><span class="s">&quot;secret&quot;</span> <span class="nt">/&gt;</span>
+    <span class="nt">&lt;/beans:bean&gt;</span>
+<span class="nt">&lt;/data-source&gt;</span>
+</pre></div>
+
+
+<h4 id="ftp_user-table-structure">FTP_USER Table Structure</h4>
+<table>
+<thead>
+<tr>
+<th>Column</th>
+<th>Type</th>
+<th>Default value</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>userid</td>
+<td>VARCHAR(64), Primary key</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>userpassword</td>
+<td>VARCHAR(64)</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>homedirectory</td>
+<td>VARCHAR(128)</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>enableflag</td>
+<td>BOOLEAN</td>
+<td>TRUE</td>
+</tr>
+<tr>
+<td>writepermission</td>
+<td>BOOLEAN</td>
+<td>FALSE</td>
+</tr>
+<tr>
+<td>idletime</td>
+<td>INT</td>
+<td>0</td>
+</tr>
+<tr>
+<td>uploadrate</td>
+<td>INT</td>
+<td>0</td>
+</tr>
+<tr>
+<td>downloadrate</td>
+<td>INT</td>
+<td>0</td>
+</tr>
+<tr>
+<td>maxloginnumber</td>
+<td>INT</td>
+<td>0</td>
+</tr>
+<tr>
+<td>maxloginperip</td>
+<td>INT</td>
+<td>0</td>
+</tr>
+</tbody>
+</table>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager_file.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager_file.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/configuration_user_manager_file.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,161 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer File based user manager &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="file-based-user-manager">File based user manager</h1>
+<p>This is the default user manager. It uses a properties file to store all the user information.</p>
+<h2 id="example">Example</h2>
+<div class="codehilite"><pre><span class="nt">&lt;file-user-manager</span> <span class="na">file=</span><span class="s">&quot;users.properties&quot;</span> <span class="na">encrypt-passwords=</span><span class="s">&quot;true&quot;</span><span class="nt">&gt;</span>
+</pre></div>
+
+
+<h2 id="file-user-manager-element">file-user-manager element</h2>
+<table>
+<thead>
+<tr>
+<th>Attribute</th>
+<th>Description</th>
+<th>Required</th>
+<th>Default value</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>file</td>
+<td>Path to the properties file for storing users</td>
+<td>Yes</td>
+<td>&nbsp;</td>
+</tr>
+<tr>
+<td>encrypt-passwords</td>
+<td>It indicates how to stored password are encrypted. Possible values are "clear" for clear text, "md5" for hashed using MD5 or "salted" for hashed salted passwords (including multiple hash iterations). "salted" is encouraged.</td>
+<td>No</td>
+<td>md5</td>
+</tr>
+</tbody>
+</table>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/contributors.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/contributors.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/contributors.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,140 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer Contributors &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="contributors">Contributors</h1>
+<h2 id="commiters">Commiters</h2>
+<p>The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.</p>
+<ul>
+<li>Rana Battacharyya</li>
+<li><a href="http://protocol7.com/">Niklas Gustavsson</a></li>
+<li>Paul Hammant</li>
+<li>David Latorre</li>
+<li>Sai Pullabhotla</li>
+<li>Sergey M Vladimirov</li>
+</ul>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/documentation.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/documentation.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/documentation.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,176 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>FtpServer Documentation  &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="documentation">Documentation</h1>
+<h2 id="tutorials">Tutorials</h2>
+<ul>
+<li><a href="embedding_ftpserver.html">Embedding FtpServer in 5 minutes</a></li>
+<li><a href="running_ftpserver_standalone.html">Running FtpServer stand-alone in 5 minutes</a></li>
+</ul>
+<h2 id="using-ftpserver">Using FtpServer</h2>
+<ul>
+<li><a href="installation.html">Installation</a><ul>
+<li><a href="ftpserver_as_windows_service.html">Installing FtpServer as a Windows service</a></li>
+</ul>
+</li>
+<li><a href="configuration.html">Configuration</a><ul>
+<li><a href="configuration_server.html">Server</a></li>
+<li><a href="configuration_listeners.html">Listeners</a></li>
+<li><a href="configuration_passive_ports.html">Configure passive ports</a></li>
+<li><a href="configuration_ssltls_support.html">TLS/SSL Support</a></li>
+<li><a href="configuration_user_manager.html">User Manager</a></li>
+<li><a href="configuration_logging.html">Logging</a></li>
+</ul>
+</li>
+<li><a href="messages.html">Messages</a></li>
+<li><a href="managing_users.html">Managing users</a></li>
+<li><a href="ftpserver_port_21.html">FtpServer and port 21 on Linux</a></li>
+</ul>
+<h2 id="advanced">Advanced</h2>
+<ul>
+<li><a href="ftpserver_commands.html">FTP Commands</a></li>
+<li><a href="ftpserver_site_commands.html">SITE Commands</a></li>
+<li><a href="ftplet.html">Ftplet</a></li>
+</ul>
+<h2 id="supported-rfcs">Supported RFCs</h2>
+<ul>
+<li><a href="http://www.ietf.org/rfc/rfc959.txt">RFC959</a></li>
+<li><a href="http://www.ietf.org/rfc/rfc2228.txt">RFC2228</a></li>
+<li><a href="http://www.ietf.org/rfc/rfc2389.txt">RFC2389</a></li>
+<li><a href="http://www.ietf.org/rfc/rfc2428.txt">RFC2428</a></li>
+<li><a href="http://www.ietf.org/rfc/rfc2640.txt">RFC2640</a></li>
+<li><a href="draft-twine-ftpmd5-00.html">draft-twine-ftpmd5-00</a></li>
+<li><a href="http://www.omz13.com/downloads/draft-somers-ftp-mfxx-00.html#anchor8">draft-somers-ftp-mfxx-00</a></li>
+</ul>
+<h2 id="developing-ftpserver">Developing FtpServer</h2>
+<ul>
+<li><a href="getting_source.html">Getting the source</a></li>
+<li><a href="building.html">Building</a></li>
+<li><a href="releasing.html">Releasing</a></li>
+</ul>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/download_1.0.0-M2.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/download_1.0.0-M2.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/download_1.0.0-M2.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,230 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>Apache FtpServer 1.0.0-M2 Release &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="apache-ftpserver-100-m2-release">Apache FtpServer 1.0.0-M2 Release</h1>
+<h2 id="new-features-in-100-m2">New Features in 1.0.0-M2</h2>
+<p>This is the first release of Apache FtpServer, you can find the major features <a href="features.html">here</a>.</p>
+<h2 id="changelog">Changelog</h2>
+<p>For a more detailed view of new features and bug fixes, see the <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12312320&amp;styleName=Html&amp;projectId=10571&amp;Create=Create">release notes</a></p>
+<h2 id="getting-the-binary-distributions">Getting the Binary Distributions</h2>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th>Download Link</th>
+<th>MD5/SHA1 hashes</th>
+<th>PGP Signature file of download</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>zip distribution</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.zip">ftpserver-1.0.0-M2.zip</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.zip.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.zip.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.zip.asc">ftpserver-1.0.0-M2.zip.asc</a></td>
+</tr>
+<tr>
+<td>tar.gz distribution</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.tar.gz">ftpserver-1.0.0-M2.tar.gz</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.tar.gz.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.tar.gz.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2.tar.gz.asc">ftpserver-1.0.0-M2.tar.gz.asc</a></td>
+</tr>
+</tbody>
+</table>
+<h2 id="verify-the-integrity-of-downloads">Verify the Integrity of Downloads</h2>
+<p>It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps:</p>
+<ol>
+<li>Download the <a href="http://archive.apache.org/dist/mina/KEYS">KEYS</a></li>
+<li>Download the asc signature file for the relevant distribution</li>
+<li>
+<p>Verify the signatures using the following commands, depending on your use of PGP or GPG:</p>
+<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">pgpk</span> <span class="o">-</span><span class="n">a</span> <span class="n">KEYS</span>
+<span class="nv">$</span> <span class="nv">pgpv</span> <span class="n">ftpserver</span><span class="o">-</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M2</span><span class="o">.</span><span class="n">tar</span><span class="o">.</span><span class="n">gz</span><span class="o">.</span><span class="n">asc</span>
+</pre></div>
+
+
+<p>or </p>
+<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">pgp</span> <span class="o">-</span><span class="n">ka</span> <span class="n">KEYS</span>
+<span class="nv">$</span> <span class="nv">pgp</span> <span class="n">ftpserver</span><span class="o">-</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M2</span><span class="o">.</span><span class="n">tar</span><span class="o">.</span><span class="n">gz</span><span class="o">.</span><span class="n">asc</span>
+</pre></div>
+
+
+<p>or</p>
+<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">gpg</span> <span class="o">--</span><span class="nb">import</span> <span class="n">KEYS</span>
+<span class="nv">$</span> <span class="nv">gpg</span> <span class="o">--</span><span class="n">verify</span> <span class="n">ftpserver</span><span class="o">-</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M2</span><span class="o">.</span><span class="n">tar</span><span class="o">.</span><span class="n">gz</span><span class="o">.</span><span class="n">asc</span>
+</pre></div>
+
+
+</li>
+</ol>
+<p>Alternatively, you can verify the MD5 signature on the files. A Unix program called md5 or md5sum is included in most Linux and Unix distributions. It is also available as part of GNU Textutils. Windows users can utilize any of the following md5 programs:</p>
+<ul>
+<li><a href="http://www.fourmilab.ch/md5/">md5</a></li>
+<li><a href="http://www.pc-tools.net/win32/md5sums/">md5sums</a></li>
+<li><a href="http://www.slavasoft.com/fsum/">SlavaSoft FSUM</a></li>
+</ul>
+<h2 id="getting-the-binaries-using-maven-2">Getting the Binaries using Maven 2</h2>
+<p>To use this release in your maven project, the proper dependency configuration that you should use in your <a href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">Maven POM</a> is:</p>
+<div class="codehilite"><pre><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.ftpserver<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>ftpserver-core<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.0.0-M2<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span>
+</pre></div>
+
+
+<h2 id="getting-the-source-code">Getting the Source Code</h2>
+<h3 id="source-distributions">Source Distributions</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th>Download Link</th>
+<th>MD5/SHA1 hashes</th>
+<th>PGP Signature file of download</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>zip sources</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.zip">ftpserver-1.0.0-M2-src.zip</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.zip.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.zip.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.zip.asc">ftpserver-1.0.0-M2-src.zip.asc</a></td>
+</tr>
+<tr>
+<td>tar.gz sources</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.tar.gz">ftpserver-1.0.0-M2-src.tar.gz</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.tar.gz.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.tar.gz.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M2/ftpserver-1.0.0-M2-src.tar.gz.asc">ftpserver-1.0.0-M2-src.tar.gz.asc</a></td>
+</tr>
+</tbody>
+</table>
+<h3 id="svn-tag-checkout">SVN Tag Checkout</h3>
+<div class="codehilite"><pre><span class="n">svn</span> <span class="n">co</span> <span class="n">http:</span><span class="sr">//s</span><span class="n">vn</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="sr">/repos/</span><span class="n">asf</span><span class="sr">/mina/</span><span class="n">ftpserver</span><span class="sr">/tags/</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M2</span>
+</pre></div>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+

Added: websites/staging/mina/trunk/content/ftpserver-project/download_1.0.0-M3.html
==============================================================================
--- websites/staging/mina/trunk/content/ftpserver-project/download_1.0.0-M3.html (added)
+++ websites/staging/mina/trunk/content/ftpserver-project/download_1.0.0-M3.html Thu Nov 15 13:08:54 2012
@@ -0,0 +1,230 @@
+<!DOCTYPE html>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, 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 governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+	<title>Apache FtpServer 1.0.0-M3 Release &mdash; Apache MINA</title>
+	
+		<link href="./../css/common.css" rel="stylesheet" type="text/css">
+		<link href="./../css/mina.css" rel="stylesheet" type="text/css">
+	
+</head>
+  <body>
+    <div id="container">
+      <div id="header">
+        <div id="subProjectsNavBar">
+          <a href="./../">
+            
+              <strong>Apache MINA Project</strong>
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../mina/index.html">
+            
+              MINA
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../asyncweb/index.html">
+            
+              AsyncWeb
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../ftpserver/index.html">
+            
+              FtpServer
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../sshd/index.html">
+            
+              SSHD
+            
+          </a>
+          &nbsp;|&nbsp;
+          <a href="./../vysper/index.html">
+            
+              Vysper
+            
+          </a>
+        </div><!-- subProjectsNavBar -->
+      </div><!-- header -->
+      <div id="content">
+        <div id="leftColumn">
+                              
+          
+          
+          
+          
+          
+            <div id="navigation">
+
+    <h5>Latest Downloads</h5>
+    <ul>
+        <li><a href="./../downloads-mina.html">Mina 2.0.7</a></li>
+        <li><a href="./../downloads-ftpserver.html">FtpServer 1.0.6</a></li>
+        <li><a href="./../downloads-sshd.html">SSHD 0.8.0</a></li>
+        <li><a href="./../downloads-vysper.html">Vysper 0.7</a></li>
+    </ul>
+    <h5>Projects</h5>
+    <ul>
+        <li><a href="./../mina/index.html">MINA</a></li>
+        <li><a href="./../asyncweb/index.html">AsyncWeb</a></li>
+        <li><a href="./../ftpserver/index.html">FtpServer</a></li>
+        <li><a href="./../sshd/index.html">SSHD</a></li>
+        <li><a href="./../vysper/index.html">Vysper</a></li>
+    </ul>
+
+    <h5>Community</h5>
+    <ul>
+      <li><a href="./../contributors.html" class="external-link" rel="nofollow">Team</a></li>
+      <li><a href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">License</a></li>
+      <li><a href="http://www.apache.org/foundation/contributing.html" class="external-link" rel="nofollow">Contributing</a></li>
+      <li><a href="http://www.apache.org/" title="Apache Software Foundation" class="external-link" rel="nofollow">ASF main site</a></li>
+      <li><a href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks</a></li>
+      <li><a href="http://www.apache.org/foundation/sponsorship.html" title="The ASF sponsorship program" class="external-link" rel="nofollow">Sponsorship program</a></li>
+      <li><a href="http://www.apache.org/security/" class="external-link" rel="nofollow">Security</a></li>
+    </ul>
+
+    <h3><a name="Navigation-Upcoming"></a>Upcoming</h3>
+
+</div>
+
+<!-- navigation -->
+          
+        </div><!-- leftColumn -->
+      <div id="rightColumn">
+
+
+
+
+<h1 id="apache-ftpserver-100-m3-release">Apache FtpServer 1.0.0-M3 Release</h1>
+<h2 id="new-features-in-100-m3">New Features in 1.0.0-M3</h2>
+<p>This is a bug fix release that fixes issues found in 1.0.3.</p>
+<h2 id="changelog">Changelog</h2>
+<p>For a more detailed view of new features and bug fixes, see the <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10571&amp;styleName=Html&amp;version=12313104">release notes</a></p>
+<h2 id="getting-the-binary-distributions">Getting the Binary Distributions</h2>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th>Download Link</th>
+<th>MD5/SHA1 hashes</th>
+<th>PGP Signature file of download</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>zip distribution</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.zip">ftpserver-1.0.0-M3.zip</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.zip.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.zip.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.zip.asc">ftpserver-1.0.0-M3.zip.asc</a></td>
+</tr>
+<tr>
+<td>tar.gz distribution</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.tar.gz">ftpserver-1.0.0-M3.tar.gz</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.tar.gz.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.tar.gz.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3.tar.gz.asc">ftpserver-1.0.0-M3.tar.gz.asc</a></td>
+</tr>
+</tbody>
+</table>
+<h2 id="verify-the-integrity-of-downloads">Verify the Integrity of Downloads</h2>
+<p>It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. The PGP signatures can be verified using PGP or GPG. Begin by following these steps:</p>
+<ol>
+<li>Download the <a href="http://archive.apache.org/dist/mina/KEYS">KEYS</a></li>
+<li>Download the asc signature file for the relevant distribution</li>
+<li>
+<p>Verify the signatures using the following commands, depending on your use of PGP or GPG:</p>
+<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">pgpk</span> <span class="o">-</span><span class="n">a</span> <span class="n">KEYS</span>
+<span class="nv">$</span> <span class="nv">pgpv</span> <span class="n">ftpserver</span><span class="o">-</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M3</span><span class="o">.</span><span class="n">tar</span><span class="o">.</span><span class="n">gz</span><span class="o">.</span><span class="n">asc</span>
+</pre></div>
+
+
+<p>or </p>
+<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">pgp</span> <span class="o">-</span><span class="n">ka</span> <span class="n">KEYS</span>
+<span class="nv">$</span> <span class="nv">pgp</span> <span class="n">ftpserver</span><span class="o">-</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M3</span><span class="o">.</span><span class="n">tar</span><span class="o">.</span><span class="n">gz</span><span class="o">.</span><span class="n">asc</span>
+</pre></div>
+
+
+<p>or</p>
+<div class="codehilite"><pre><span class="nv">$</span> <span class="nv">gpg</span> <span class="o">--</span><span class="nb">import</span> <span class="n">KEYS</span>
+<span class="nv">$</span> <span class="nv">gpg</span> <span class="o">--</span><span class="n">verify</span> <span class="n">ftpserver</span><span class="o">-</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M3</span><span class="o">.</span><span class="n">tar</span><span class="o">.</span><span class="n">gz</span><span class="o">.</span><span class="n">asc</span>
+</pre></div>
+
+
+</li>
+</ol>
+<p>Alternatively, you can verify the MD5 signature on the files. A Unix program called md5 or md5sum is included in most Linux and Unix distributions. It is also available as part of GNU Textutils. Windows users can utilize any of the following md5 programs:</p>
+<ul>
+<li><a href="http://www.fourmilab.ch/md5/">md5</a></li>
+<li><a href="http://www.pc-tools.net/win32/md5sums/">md5sums</a></li>
+<li><a href="http://www.slavasoft.com/fsum/">SlavaSoft FSUM</a></li>
+</ul>
+<h2 id="getting-the-binaries-using-maven-2">Getting the Binaries using Maven 2</h2>
+<p>To use this release in your maven project, the proper dependency configuration that you should use in your <a href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">Maven POM</a> is:</p>
+<div class="codehilite"><pre><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.ftpserver<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>ftpserver-core<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.0.0-M3<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span>
+</pre></div>
+
+
+<h2 id="getting-the-source-code">Getting the Source Code</h2>
+<h3 id="source-distributions">Source Distributions</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th>Download Link</th>
+<th>MD5/SHA1 hashes</th>
+<th>PGP Signature file of download</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>zip sources</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.zip">ftpserver-1.0.0-M3-src.zip</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.zip.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.zip.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.zip.asc">ftpserver-1.0.0-M3-src.zip.asc</a></td>
+</tr>
+<tr>
+<td>tar.gz sources</td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.tar.gz">ftpserver-1.0.0-M3-src.tar.gz</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.tar.gz.md5">MD5</a>/<a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.tar.gz.sha1">SHA1</a></td>
+<td><a href="http://archive.apache.org/dist/mina/ftpserver/1.0.0-M3/ftpserver-1.0.0-M3-src.tar.gz.asc">ftpserver-1.0.0-M3-src.tar.gz.asc</a></td>
+</tr>
+</tbody>
+</table>
+<h3 id="svn-tag-checkout">SVN Tag Checkout</h3>
+<div class="codehilite"><pre><span class="n">svn</span> <span class="n">co</span> <span class="n">http:</span><span class="sr">//s</span><span class="n">vn</span><span class="o">.</span><span class="n">apache</span><span class="o">.</span><span class="n">org</span><span class="sr">/repos/</span><span class="n">asf</span><span class="sr">/mina/</span><span class="n">ftpserver</span><span class="sr">/tags/</span><span class="mf">1.0.0</span><span class="o">-</span><span class="n">M3</span>
+</pre></div>
+
+
+
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2012, <a href="http://www.apache.org">The Apache Software Foundation</a> - <a href="./../privacy-policy.html">Privacy Policy</a><br />
+                Apache MINA, MINA, Apache Vysper, Vysper, Apache SSHd, SSHd, Apache FtpServer, FtpServer, Apache AsyncWeb, AsyncWeb,
+                Apache, the Apache feather logo, and the Apache Mina project logos are trademarks of The Apache Software Foundation.
+            </div>
+        </div><!-- container -->
+    </body>
+</html>
+