noel 2003/07/03 00:50:16
Modified: . Tag: branch_2_1_fcs build.xml
src/conf Tag: branch_2_1_fcs james-config.xml
Added: src/conf Tag: branch_2_1_fcs james-listmanager.xml
james-liststores.xml miResources.xml
src/java/org/apache/james/transport/mailets Tag:
branch_2_1_fcs CommandListservFooter.java
CommandListservManager.java
CommandListservProcessor.java
ICommandListservManager.java
src/java/org/apache/james/transport/mailets/listservcommands
Tag: branch_2_1_fcs BaseCommand.java
ErrorCommand.java IListServCommand.java Info.java
MailDataSource.java Owner.java Subscribe.java
SubscribeConfirm.java UnSubscribe.java
UnSubscribeConfirm.java
james-listmanager-proposal.txt
src/java/org/apache/james/transport/matchers Tag:
branch_2_1_fcs CommandListservMatcher.java
Log:
Mark Imel's new List Server. Code and config changes.
Revision Changes Path
No revision
No revision
1.116.2.8 +9 -2 james-server/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/james-server/build.xml,v
retrieving revision 1.116.2.7
retrieving revision 1.116.2.8
diff -u -r1.116.2.7 -r1.116.2.8
--- build.xml 29 May 2003 05:05:32 -0000 1.116.2.7
+++ build.xml 3 Jul 2003 07:50:14 -0000 1.116.2.8
@@ -21,7 +21,7 @@
<property file="${user.home}/.ant.properties"/>
<property name="name" value="james"/>
<property name="Name" value="James"/>
- <property name="version" value="2.2.0a2"/>
+ <property name="version" value="2.2.0a8"/>
<property name="year" value="1999-2003"/>
<!-- There should be no need to override default compiler but need to change
javac task to run without this -->
@@ -392,12 +392,19 @@
<include name="activation.jar"/>
<include name="mail_1_3.jar"/>
<include name="commons-net-1.0.0-dev.jar"/>
+ <include name="commons-collections.jar"/>
</lib>
<zipfileset dir="${conf.dir}" fullpath="conf/sqlResources.xml">
<include name="sqlResources.xml"/>
</zipfileset>
<zipfileset dir="${conf.dir}" fullpath="conf/miResources.xml">
<include name="miResources.xml"/>
+ </zipfileset>
+ <zipfileset dir="${conf.dir}" fullpath="conf/james-listmanager.xml">
+ <include name="james-listmanager.xml"/>
+ </zipfileset>
+ <zipfileset dir="${conf.dir}" fullpath="conf/james-liststores.xml">
+ <include name="james-liststores.xml"/>
</zipfileset>
</sar>
</target>
No revision
No revision
1.40.2.12 +16 -1 james-server/src/conf/james-config.xml
Index: james-config.xml
===================================================================
RCS file: /home/cvs/james-server/src/conf/james-config.xml,v
retrieving revision 1.40.2.11
retrieving revision 1.40.2.12
diff -u -r1.40.2.11 -r1.40.2.12
--- james-config.xml 16 Jun 2003 05:33:02 -0000 1.40.2.11
+++ james-config.xml 3 Jul 2003 07:50:14 -0000 1.40.2.12
@@ -1,4 +1,9 @@
<?xml version="1.0"?>
+<!DOCTYPE config [
+<!ENTITY listserverConfig SYSTEM "file:../apps/james/conf/james-listmanager.xml">
+<!ENTITY listserverStores SYSTEM "file:../apps/james/conf/james-liststores.xml">
+]>
+
<!-- Configuration file for the Apache Jakarta James server -->
<!-- This file contains important settings that control the behaviour -->
@@ -185,6 +190,11 @@
<mailet match="[EMAIL PROTECTED]" class="Null"/>
-->
+ <!-- This is an example configuration including configuration for a list
server. -->
+ <!--
+ &listserverConfig;
+ -->
+
<!-- Send remaining mails to the transport processor for either local or
remote delivery -->
<mailet match="All" class="ToProcessor">
<processor> transport </processor>
@@ -734,6 +744,11 @@
<repository name="LocalUsers"
class="org.apache.james.userrepository.JamesUsersJdbcRepository"
destinationURL="db://maildb/users">
<sqlFile>file://conf/sqlResources.xml</sqlFile>
</repository>
+ -->
+
+ <!-- This is an example configuration including configuration for a list
server. -->
+ <!--
+ &listserverStores;
-->
</users-store>
No revision
No revision
1.1.2.1 +38 -0 james-server/src/conf/Attic/james-listmanager.xml
1.1.2.1 +5 -0 james-server/src/conf/Attic/james-liststores.xml
1.1.2.1 +158 -0 james-server/src/conf/Attic/miResources.xml
No revision
No revision
1.1.2.1 +270 -0
james-server/src/java/org/apache/james/transport/mailets/Attic/CommandListservFooter.java
1.1.2.1 +460 -0
james-server/src/java/org/apache/james/transport/mailets/Attic/CommandListservManager.java
1.1.2.1 +532 -0
james-server/src/java/org/apache/james/transport/mailets/Attic/CommandListservProcessor.java
1.1.2.1 +156 -0
james-server/src/java/org/apache/james/transport/mailets/Attic/ICommandListservManager.java
No revision
No revision
1.1.2.1 +259 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/BaseCommand.java
1.1.2.1 +140 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/ErrorCommand.java
1.1.2.1 +121 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/IListServCommand.java
1.1.2.1 +155 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/Info.java
1.1.2.1 +159 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/MailDataSource.java
1.1.2.1 +100 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/Owner.java
1.1.2.1 +145 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/Subscribe.java
1.1.2.1 +157 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/SubscribeConfirm.java
1.1.2.1 +141 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/UnSubscribe.java
1.1.2.1 +143 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/UnSubscribeConfirm.java
1.1.2.1 +68 -0
james-server/src/java/org/apache/james/transport/mailets/listservcommands/Attic/james-listmanager-proposal.txt
No revision
No revision
1.1.2.1 +100 -0
james-server/src/java/org/apache/james/transport/matchers/Attic/CommandListservMatcher.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]