pgoldstein 2002/08/17 20:25:28
Modified: src/xdocs weare.xml
www FAQ.html weare.html
Log:
Added myself to the committers list, Noel Bergman to the contributors list.
Committed the HTML for the FAQ
Revision Changes Path
1.8 +3 -1 jakarta-james/src/xdocs/weare.xml
Index: weare.xml
===================================================================
RCS file: /home/cvs/jakarta-james/src/xdocs/weare.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- weare.xml 30 May 2002 14:33:38 -0000 1.7
+++ weare.xml 18 Aug 2002 03:25:28 -0000 1.8
@@ -11,7 +11,7 @@
<body>
<section name="This list">
-<p>Special thanks go to the following people for their contributions to this
project. We also appreciate documentation, feedback, and bug reports. This is a
living document that describes the key contributors to James. Last Updated April
2002.</p>
+<p>Special thanks go to the following people for their contributions to this
project. We also appreciate documentation, feedback, and bug reports. This is a
living document that describes the key contributors to James. Last Updated August
2002.</p>
</section>
<section name="Active Commiters">
@@ -21,6 +21,7 @@
<p><b>Harmeet Bedi (harmeet at kodemuse.com) (HB)</b></p>
<p><b>Darrell DeBoer (DD)</b></p>
<p><b>Danny Angus (danny at autonomous.co.uk) (DA)</b><br/> Danny is CTO of <a
href="http://www.autonomous.co.uk">Autonomous Software Ltd.</a> where I try not to get
too distracted by open source projects.</p>
+<p><b>Peter M. Goldstein (farsight at alum.mit.edu) (PG)</b></p>
</section>
<section name="Other Contributors">
@@ -37,6 +38,7 @@
<p><b>Eung-ju Park (colus at apache.org) (EP)</b></p>
<p><b>Paul Hammant (Paul_Hammant at yahoo.com) (PH)</b></p>
<p><b>Jeff Keyser (JKeyser at telocity.com) (JK)</b></p>
+<p><b>Noel Bergman (noel at devtech.com) (NjB)</b></p>
</section>
1.13 +52 -4 jakarta-james/www/FAQ.html
Index: FAQ.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/FAQ.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- FAQ.html 30 Jul 2002 13:50:13 -0000 1.12
+++ FAQ.html 18 Aug 2002 03:25:28 -0000 1.13
@@ -244,7 +244,13 @@
<li>
-<a href="#12">How can I contribute to James?</a>
+<a href="#12">How to remove unneeded services like NNTP, POP3?</a>
+
+</li>
+
+<li>
+
+<a href="#13">How can I contribute to James?</a>
</li>
@@ -274,7 +280,7 @@
<td>
<blockquote>
-<p>James currently (v2.0a2) includes only the most basic list functionality, users
can subscribe and unsubscribe, but there is no moderation of messages or
subscriptions</p>
+<p>James currently (v2.0a3) includes only the most basic list functionality, users
can subscribe and unsubscribe, but there is no moderation of messages or
subscriptions</p>
<p>To enable a list you need the following in config.xml in the root processor
block and above the final mailet block -</p>
@@ -494,6 +500,8 @@
<p>Unfortunately IMAP support is currently stalled. There is a proposal in CVS,
but IMAP is a significantly more complex than other mail protocols, both from a
protocol command support and in terms of complexity you need on the server. If you
are interested in taking the proverbial ball and running with it, we would all very
much appreciated. (I personally am incredibly frustrated with an old Netscape Mail
server, but I've sworn myself to upgrade only to James's IMAP once ready as
incentive.)
<br>Serge Knystautas</p>
+
+<p>An update to Serge's comment: the IMAP server has recently attracted new
interest. We are hopeful that we will be able to provide basic IMAP support in James
2.1<br>Peter M. Goldstein</p>
</blockquote>
</td>
@@ -611,7 +619,7 @@
echo Usage: %0 jdk_home james_home (classic/hotspot/server)
echo NOTE: You MAY NOT use spaces in the path names.
echo JDK 1.3 does not come with hotpot server by default, you must
- echo install this seperately if you wish to use it.
+ echo install this separately if you wish to use it.
echo Example: %0 c:\progra~1\jdk c:\progra~1\james classic
echo --------
@@ -685,8 +693,48 @@
</td>
</tr>
</table>
-
+
<a name="12"></a>
+
+<table width="100%" cellpadding="2" cellspacing="0" border="0">
+<tr>
+<td bgcolor="#828DA6"><font face="arial,helvetica.sanserif" color="#ffffff"><a
name="How%20to%20remove%20unneeded%20services%20like%20NNTP,%20POP3?"><strong>How to
remove unneeded services like NNTP, POP3?</strong></a></font></td>
+</tr>
+<tr>
+<td>
+<blockquote>
+
+<p>The following information is based on James 2.0a3, but the
+ upcoming 2.1 version should be similar.</p>
+
+<p>NNTP and other underlying services are called "blocks" in the
+ Avalon Phoenix terminology. Blocks are specified in the
+ assembly.xml file which is under the apps/james/conf directory in
+ 2.0a3 and apps\james\SAR-INF in 2.1. Note: this file is created
+ during the first startup of James.</p>
+
+<p>There are dependencies between the blocks, which you can read from
+ the file. For example the SMTP Server block depends on the
+ users-store block, so if you want SMTP then you cannot remove the
+ users-store block even if you only want to relay messages.</p>
+
+<p>To remove the NNTP Server comment out the following blocks:
+ NNTP server, NNTP Authentication Service, NNTP repository.
+ To remove the POP3 Server comment out the POP3 Server block.</p>
+
+<p>If you remove a block it wont't be loaded next time you restart
+ James. You must also remove all sections related to the removed
+ blocks from the James configuration file - config.xml - otherwise
+ you will get error messages, saying that there is no corresponding
+ block.<br>
+ Hontvari Jozsef</p>
+
+</blockquote>
+</td>
+</tr>
+</table>
+
+<a name="13"></a>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
<tr>
1.7 +9 -1 jakarta-james/www/weare.html
Index: weare.html
===================================================================
RCS file: /home/cvs/jakarta-james/www/weare.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- weare.html 30 Jul 2002 13:50:13 -0000 1.6
+++ weare.html 18 Aug 2002 03:25:28 -0000 1.7
@@ -160,7 +160,7 @@
<td>
<blockquote>
-<p>Special thanks go to the following people for their contributions to this
project. We also appreciate documentation, feedback, and bug reports. This is a
living document that describes the key contributors to James. Last Updated April
2002.</p>
+<p>Special thanks go to the following people for their contributions to this
project. We also appreciate documentation, feedback, and bug reports. This is a
living document that describes the key contributors to James. Last Updated August
2002.</p>
</blockquote>
</td>
@@ -198,6 +198,10 @@
<b>Danny Angus (danny at autonomous.co.uk) (DA)</b>
<br> Danny is CTO of <a href="http://www.autonomous.co.uk">Autonomous Software
Ltd.</a> where I try not to get too distracted by open source projects.</p>
+<p>
+<b>Peter M. Goldstein (farsight at alum.mit.edu) (PG)</b>
+</p>
+
</blockquote>
</td>
</tr>
@@ -260,6 +264,10 @@
<p>
<b>Jeff Keyser (JKeyser at telocity.com) (JK)</b>
+</p>
+
+<p>
+<b>Noel Bergman (noel at devtech.com) (NjB)</b>
</p>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>