RE: imap server status?

2003-08-26 Thread Noel J. Bergman
If so, how solid is the protocol stack? Is there any document(s) describing its current state/usability? Darrell would be the best person to answer the question. I see to recall that he seemed to think that the protocol stack was the only usable part. --- Noel

Re: [PATCH] JDBCVirtualUserTable - One-to-Many Mapping, Flexible SQL

2003-08-26 Thread Kenny Smith
Hi Noel, I've checked my sent mail 3 or 4 times now and I did attach the patch to both of my messages. Is the list software stripping out the attachment? Kenny We received no such attachment. Please resend, with the attachment in a .ZIP/.JAR or other.

Re: High CPU Usage

2003-08-26 Thread Kenny Smith
On Sunday, August 24, 2003, at 12:30 PM, Noel J. Bergman wrote: When I start up James on my server, it grows very quickly (3-4 seconds) to using 95% of the CPU and it hovers above 90% forever. Define forever. 3 days and counting. Do you have any large file system repositories that are being

RE: [PATCH] JDBCVirtualUserTable - One-to-Many Mapping, Flexible SQL

2003-08-26 Thread Noel J. Bergman
I've checked my sent mail 3 or 4 times now and I did attach the patch to both of my messages. Is the list software stripping out the attachment? What was the original attachment name? There is some filtering on the list server. --- Noel

Re: [PATCH] JDBCVirtualUserTable - One-to-Many Mapping, Flexible SQL

2003-08-26 Thread Kenny Smith
The first mail had JDBCVirtualUserTable.java.patch and the second had JDBCVirtualUserTablePatch.jar :/ Kenny What was the original attachment name? There is some filtering on the list server. - To unsubscribe, e-mail:

New CVS Commit Rights

2003-08-26 Thread Noel J. Bergman
All James committers now have commit rights for the Avalon-Components module, which contain the reusable components/services: http://cvs.apache.org/viewcvs.cgi/avalon-components/. --- Noel - To unsubscribe, e-mail:

RE: [PATCH] JDBCVirtualUserTable - One-to-Many Mapping, Flexible SQL

2003-08-26 Thread Noel J. Bergman
The jar file got through. Don't know what was wrong with the .patch file. --- Noel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [PATCH] mbox mail repository V2

2003-08-26 Thread Jason Webb
I've changed the exception handling and altered the POPHandler to use the new style of exceptions and the remove(CollectionMailImpl). All I need to do is test it. Hopefully I should be able to submit it today. I would have done it earlier but I've been in Venice for a few days... -- Jason

[PATCH]mbox mail repository v3

2003-08-26 Thread Jason Webb
As discussed I have changed the usage of RuntimeException to use MessagingException where appropriate. The POP3Handler now calls the remove(CollectionMailImpl) method rather than call remove(String). I've also tidied up some of the Javadoc in POP3Handler as well. The other users of

IMAP

2003-08-26 Thread Denis Nikitin
Hi All, It would be really good to find out about the current status of IMAP support implementation. Is it possible to use any other IMAP server as an alternative? Best regards, Denis. signature.asc Description: This is a digitally signed message part

Bayesian filtering and MailAddress validation

2003-08-26 Thread Noel J. Bergman
Seems like in Sept., after your crunch and Vincenzo returns from vacation, that the two of you should merge your changes (your changes sound parameterizable), and maybe get it into CVS. If you want to send me a JAR and instructions, I've already got reposting from mbox working, although I am

RE: [PATCH]mbox mail repository v3

2003-08-26 Thread Noel J. Bergman
Any comments? This is an issue I ran into in the v2 code last night. You have this: mboxFile = destination.substring(mbox://.length(), destination.lastIndexOf(/)); That doesn't work with mbox:///home/noel/test-mbox, which the code stripped to /home/noel. Avalon may append user/ when making

RE: [PATCH]mbox mail repository v3

2003-08-26 Thread Noel J. Bergman
Jason, This code: try { // Attempt to read the TO field and see if it errors toAddr = mimeMessage.getRecipients(javax.mail.Message.RecipientType.TO).toString(); } catch (Exception e) { // It has errored, so time for plan B // use the from field I suppose try {