danny 02/02/27 07:46:39
Modified: src/xdocs weare.xml
src/xdocs/stylesheets project.xml
Added: src/xdocs FAQ.xml
Log:
added FAQ and weare
Revision Changes Path
1.2 +8 -2 jakarta-james/src/xdocs/weare.xml
Index: weare.xml
===================================================================
RCS file: /home/cvs/jakarta-james/src/xdocs/weare.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- weare.xml 15 Feb 2002 15:28:22 -0000 1.1
+++ weare.xml 27 Feb 2002 15:46:39 -0000 1.2
@@ -14,8 +14,12 @@
</section>
<section name="Active Commiters">
-
-<p><b>Danny Angus (danny at thought.co.uk)</b><br/> Danny is CTO of <a
href="www.thought.co.uk">Thought Interactive Ltd.</a> where I try not to get too
distracted by open source projects.
+<p><b>Pete Donald</b></p>
+<p><b>Charles Bennet</b></p>
+<p><b>Serge Knystautas</b></p>
+<p><b>Harmeet Bedi</b></p>
+<p><b>Darrell DeBoer</b></p>
+<p><b>Danny Angus (danny at thought.co.uk)</b><br/> Danny is CTO of <a
href="www.thought.co.uk">Thought Interactive Ltd.</a> where I try not to get too
distracted by open source projects.</p>
</section>
@@ -27,4 +31,6 @@
</body>
</document>
+
+
1.1 jakarta-james/src/xdocs/FAQ.xml
Index: FAQ.xml
===================================================================
<?xml version="1.0"?>
<document>
<properties>
<title>Frequently Asked Questions</title>
<author email="[EMAIL PROTECTED]">Danny Angus</author>
</properties>
<body>
<section name="This FAQ">
<P>This is a living document that provides answers to common questions about James,
installation, configuration, admin and running not already answered in the
documentation. Last Updated February 2002.</P>
</section>
<section name="Questions">
<p>
<ul>
<li><a href="#1">Would you please teach me how to set up a mailing list</a></li>
</ul>
</p>
</section>
<section name="Answers">
<a name="1"></a>
<subsection name="Would you please teach me how to set up a mailing list">
<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>To enable a list you need the following in config.xml in the root processor
block and above the final mailet block -</p>
<source>
<mailet match="CommandForListserv=james@localhost" class="AvalonListservManager">
<repositoryName>list-james</repositoryName>
</mailet>
</source>
<p>that will intercept the command emails sent to
<ul>
<li>james-on@localhost to subscribe the sender</li>
<li>james-off@localhost to unsubscribe the sender</li>
</ul>
</p>
<p>and-</p>
<source>
<mailet match="RecipientIs=james@localhost" class="AvalonListserv">
<membersonly> false </membersonly>
<attachmentsallowed> true </attachmentsallowed>
<replytolist> true </replytolist>
<repositoryName>list-james</repositoryName>
<subjectprefix>JamesList</subjectprefix>
</mailet>
</source>
<p>Which will distribute the mail to the current subscribers</p>
<p>in addition to the above you need to have a repository configured in the
users-store block(usually near the bottom of config.xml) like so (database)-</p>
<source>
<repository name="list-james"
class="org.apache.james.userrepository.ListUsersJdbcRepository"
destinationURL="db://maildb/lists/list-james">
<sqlFile>file://conf/sqlResources.xml</sqlFile>
</repository>
</source>
<p>Database users will also need to ensure that they have configured a data-source
named to match the destination URL</p>
<p>or (filesystem)-</p>
<source>
<repository name="list-james"
class="org.apache.james.userrepository.UsersFileRepository">
<destination URL="file://var/lists/list-james/"/>
</repository>
</source>
<p>Restart James, send a mail to james-on@localhost and you should be
subscribed.</p>
<p>The repository, be it a database table or directory in the filesystem
will be created automatically.</p>
<p>Database users can manipulate the users repository using SQL, and hence
any application capable of running SQL queries against it</p>
</subsection>
</section>
</body>
</document>
1.9 +61 -60 jakarta-james/src/xdocs/stylesheets/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-james/src/xdocs/stylesheets/project.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- project.xml 15 Feb 2002 15:52:43 -0000 1.8
+++ project.xml 27 Feb 2002 15:46:39 -0000 1.9
@@ -1,60 +1,61 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<project name="JAMES"
- href="http://jakarta.apache.org/james/">
-
- <title>Jakarta James</title>
- <logo href="/images/james-logo.jpg">JAMES - Java Apache Mail Enterprise
Server</logo>
-
- <body>
- <menu name="James">
- <item name="Overview" href="/index.html"/>
- <item name="Install" href="/install.html"/>
- <item name="Configuration" href="/configuration_v2_0.html"/>
- <item name="Architecture" href="/architecture_v2_0.html"/>
- </menu>
-
- <menu name="Download">
- <item name="Binaries" href="/site/binindex.html"/>
- <item name="Source Code" href="/site/sourceindex.html"/>
- </menu>
-
- <menu name="Guides">
- <item name="James API" href="javadocs/index.html"/>
- <item name="Mailet API" href="/mailet/index.html"/>
- <item name="Using JDBC" href="/usingJDBC_v2.0.html"/>
- <item name="Using LDAP" href="/usingLDAP_v1_2.html"/>
- <item name="Using TLS" href="/usingTLS_v1_2.html"/>
- <item name="Useful RFCs {web}"
href="http://jakarta.apache.org/james/rfclist"/>
- </menu>
-
- <menu name="Project">
- <item name="Coding Standards" href="/code-standards.html"/>
- <item name="License" href="/license.html"/>
- <item name="TODO" href="/todo.html"/>
- <item name="Changelog" href="/changelog.html"/>
- <item name="Who We Are" href="/weare.html"/>
- </menu>
-
- <menu name="Jakarta Information {web}">
- <item name="Get Involved" href="/site/getinvolved.html"/>
- <item name="CVS Repositories" href="/site/cvsindex.html"/>
- <item name="Mailing Lists" href="/site/mail.html"/>
- <item name="Reference Library" href="/site/library.html"/>
- <item name="Bug Database" href="/site/bugs.html"/>
- </menu>
-
- <menu name="Jakarta Essentials {web}">
- <item name="Front Page"
href="http://jakarta.apache.org/index.html"/>
- <item name="News & Status" href="/site/news.html"/>
- <item name="Mission" href="/site/mission.html"/>
- <item name="Guidelines Notes" href="/site/guidelines.html"/>
- <item name="FAQs" href="/site/faqs.html"/>
- </menu>
-
- <menu name="Related Projects {web}">
- <item name="Ant"
href="http://jakarta.apache.org/ant/index.html"/>
- <item name="Avalon"
href="http://jakarta.apache.org/avalon/index.html"/>
- </menu>
-
- </body>
-</project>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="JAMES"
+ href="http://jakarta.apache.org/james/">
+
+ <title>Jakarta James</title>
+ <logo href="/images/james-logo.jpg">JAMES - Java Apache Mail Enterprise
Server</logo>
+
+ <body>
+ <menu name="James">
+ <item name="Overview" href="/index.html"/>
+ <item name="Install" href="/install.html"/>
+ <item name="Configuration" href="/configuration_v2_0.html"/>
+ <item name="Architecture" href="/architecture_v2_0.html"/>
+ <item name="James FAQ" href="/FAQ.html"/>
+ </menu>
+
+ <menu name="Download">
+ <item name="Binaries" href="/site/binindex.html"/>
+ <item name="Source Code" href="/site/sourceindex.html"/>
+ </menu>
+
+ <menu name="Guides">
+ <item name="James API" href="/javadocs/index.html"/>
+ <item name="Mailet API" href="/mailet/index.html"/>
+ <item name="Using JDBC" href="/usingJDBC_v2.0.html"/>
+ <item name="Using LDAP" href="/usingLDAP_v1_2.html"/>
+ <item name="Using TLS" href="/usingTLS_v1_2.html"/>
+ <item name="Useful RFCs {web}"
href="http://jakarta.apache.org/james/rfclist"/>
+ </menu>
+
+ <menu name="Project">
+ <item name="Coding Standards" href="/code-standards.html"/>
+ <item name="License" href="/license.html"/>
+ <item name="TODO" href="/todo.html"/>
+ <item name="Changelog" href="/changelog.html"/>
+ <item name="Who We Are" href="/weare.html"/>
+ </menu>
+
+ <menu name="Jakarta Information {web}">
+ <item name="Get Involved" href="/site/getinvolved.html"/>
+ <item name="CVS Repositories" href="/site/cvsindex.html"/>
+ <item name="Mailing Lists" href="/site/mail.html"/>
+ <item name="Reference Library" href="/site/library.html"/>
+ <item name="Bug Database" href="/site/bugs.html"/>
+ </menu>
+
+ <menu name="Jakarta Essentials {web}">
+ <item name="Front Page"
href="http://jakarta.apache.org/index.html"/>
+ <item name="News & Status" href="/site/news.html"/>
+ <item name="Mission" href="/site/mission.html"/>
+ <item name="Guidelines Notes" href="/site/guidelines.html"/>
+ <item name="FAQs" href="/site/faqs.html"/>
+ </menu>
+
+ <menu name="Related Projects {web}">
+ <item name="Ant"
href="http://jakarta.apache.org/ant/index.html"/>
+ <item name="Avalon"
href="http://jakarta.apache.org/avalon/index.html"/>
+ </menu>
+
+ </body>
+</project>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>