Hello Mr. Angus,

could u please give me more details about this one :
>       <repository name="list-james"
>
> class="org.apache.james.userrepository.ListUsersJdbcRepository"
>                   destinationURL="db://maildb/lists/list-james">
>           <sqlFile>file://conf/sqlResources.xml</sqlFile>
>       </repository>

how does this work exactly? what does sqlResources.xml look like?
im curious about using mysql server for our list server in james.
can u guys share some example xml code?
and if its possible to convert my current user list to mysql db,
how do i go about it?

currently im using the default config to store user list (in a
directory)
-----------------
                    <mailet match="[EMAIL PROTECTED]" 
class="AvalonListservManager">
                        <membersPath> 
file://../var/users/list-james/manila/</membersPath>
                    </mailet>
                    <mailet match="[EMAIL PROTECTED]" class="AvalonListserv">
                        <membersonly> false </membersonly>
                        <attachmentsallowed> true </attachmentsallowed>
                        <replytolist> true </replytolist>
                        <membersPath> 
file://../var/users/list-james/manila/</membersPath>
                        <subjectprefix>manila</subjectprefix>
                    </mailet>
------------------
and lastly, does anyone already implemented a web-based user
administration? :) thanx!

regards,
Stephen

Monday, November 26, 2001, 4:31:00 AM, you wrote:

DA> Yes, this is the case, consider the mailing list server that ships with
DA> james as a proof of concept, rather than a fully fledged listserve system.

DA> There will be improvements with time, and alternative mechanisms, perhaps
DA> you'd like to extend or replace the default offering and offer your
DA> enhancenments for inclusion in the codebase... :-)

DA> d.

DA> -----Original Message-----
DA> From: Michelle [mailto:[EMAIL PROTECTED]]
DA> Sent: 26 November 2001 12:14
DA> To: James Users List
DA> Subject: Re: James as a List Server


DA> Thanks much for this.  It's very helpful.

DA> One last question --- does each mailing list need to be defined in the
DA> configuration file (for the mailet list serving definitions)?  So for
DA> example, if my lists are created dynamically, I would need to somehow update
DA> the configuration file and restart JAMES?

DA> Again, thanks.

DA> ----- Original Message -----
DA> From: "Danny Angus" <[EMAIL PROTECTED]>
DA> To: "James Users List" <[EMAIL PROTECTED]>
DA> Sent: Thursday, November 22, 2001 5:05 AM
DA> Subject: RE: James as a List Server


>> the mailing list stuff that ships with James is a little basic, there are
>> better implementations in development AFAIK.
>>
>> However the things you need to check are 1/ that you have a list-users
>> repository set up in the User Storage block
>>
>> this example is for db storage:
>>
>>       <repository name="list-james"
>>
>> class="org.apache.james.userrepository.ListUsersJdbcRepository"
>>                   destinationURL="db://maildb/lists/list-james">
>>           <sqlFile>file://conf/sqlResources.xml</sqlFile>
>>       </repository>
>>
>>
>> and 2/ that you have some kind of listserv mailets configured in a
>> processor, this is my testing one from the root processor (every bona-fide
>> mail gets here)
>>
>> the first mailet detects mail having the the user portion of the
>> list-address appended with -on or -off (in this example
>> [EMAIL PROTECTED], [EMAIL PROTECTED])
>> the commands will subscribe and unsubscribe you, there is no facility for
>> moderating membership.
>>
>>          <mailet match="[EMAIL PROTECTED]"
>>                   class="AvalonListservManager">
>>             <repositoryName>list-james</repositoryName>
>>           </mailet>
>>
>> this next mailet appears below the previous in the conf and is the one
DA> which
>> deals with the distribution of the mail
>> the params should speak for themselves,
>>
>>           <mailet match="[EMAIL PROTECTED]"
>> class="AvalonListserv">
>>             <membersonly> false </membersonly>
>>             <attachmentsallowed> true </attachmentsallowed>
>>             <replytolist> true </replytolist>
>>             <repositoryName>list-james</repositoryName>
>>             <subjectprefix>JamesList</subjectprefix>
>>           </mailet>
>>
>>
>>
>>
>>
>>
>> d.
>>
>>
>>
>> > -----Original Message-----
>> > From: Michelle [mailto:[EMAIL PROTECTED]]
>> > Sent: Wednesday, November 21, 2001 5:09 PM
>> > To: [EMAIL PROTECTED]
>> > Subject: James as a List Server
>> >
>> >
>> > I am a wee bit fuzzy on configuring James as a list server.  I've
>> > been through the documentation and the mail list but I cannot
>> > find anything but a few small references that do not paint a
>> > complete picture.
>> >
>> > Are there any configuration and usage instructions around, or
>> > even an email in the mailing list that I missed?    I appreciate
>> > the help.
>> >
>> > - Michelle
>> >
>>
>>
>> --
>> To unsubscribe, e-mail:
DA> <mailto:[EMAIL PROTECTED]>
>> For additional commands, e-mail:
DA> <mailto:[EMAIL PROTECTED]>
>>
>>


DA> --
DA> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
DA> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


DA> --
DA> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
DA> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to