Re: Experimental Handler Branch

2007-01-04 Thread Joachim Draeger
Am Mittwoch, den 03.01.2007, 22:59 + schrieb Danny Angus: I believe that proposals thrashed out in the sandbox area are good, and can go places where we wouldn't want James to go, they can ask more questions than they answer. But... this project does still exist through the mailing

svn commit: r492460 - in /james/server/sandbox/handlerapi-experiment: ./ src/java/org/apache/james/smtpserver/core/

2007-01-04 Thread norman
Author: norman Date: Thu Jan 4 00:50:59 2007 New Revision: 492460 URL: http://svn.apache.org/viewvc?view=revrev=492460 Log: Add HookResultHook to hook to AuthCmdHandler Add javadocs Modified: james/server/sandbox/handlerapi-experiment/TODO

svn commit: r492465 - /james/server/sandbox/handlerapi-experiment/src/java/org/apache/james/smtpserver/core/AbstractHookableCmdHandler.java

2007-01-04 Thread norman
Author: norman Date: Thu Jan 4 01:15:09 2007 New Revision: 492465 URL: http://svn.apache.org/viewvc?view=revrev=492465 Log: fix initialCapacity Modified: james/server/sandbox/handlerapi-experiment/src/java/org/apache/james/smtpserver/core/AbstractHookableCmdHandler.java Modified:

Jsieve Configuration

2007-01-04 Thread Lokesh Babu
Hi, i have to integrate Jsieve with james mailserver,can anyone please provide the process of jsieve integration with james mailserver/hmailserver. regards, Lokesh. -- View this message in context: http://www.nabble.com/Jsieve-Configuration-tf2918418.html#a8155943 Sent from the James - Dev

Re: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Danny Angus
+0 Now I'm voting, but I trust you guys to come to the right decision without my input. Happy Norman? ;-) d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [handlerapi-experiment] some information about the current sandbox

2007-01-04 Thread Danny Angus
On 1/2/07, Stefano Bagnara [EMAIL PROTECTED] wrote: In a way really similar to Danny's Mailet API sandbox this is thought as an experiment to create a strawman implementation to talk about later. Great stuff guys, this approach certainly got the debate started about the mailet api. If I can

[jira] Commented: (JAMES-745) XMLVirtualUserTable and JDBCVirtualUserTable not work symetric

2007-01-04 Thread Norman Maurer (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-745?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462194 ] Norman Maurer commented on JAMES-745: - Any news one this ? I whould like to fix this issue ... I whould use 1)

Re: [handlerapi-experiment] some information about the current sandbox

2007-01-04 Thread Stefano Bagnara
Danny Angus wrote: On 1/2/07, Stefano Bagnara [EMAIL PROTECTED] wrote: In a way really similar to Danny's Mailet API sandbox this is thought as an experiment to create a strawman implementation to talk about later. Great stuff guys, this approach certainly got the debate started about the

Re: [jira] Commented: (JAMES-745) XMLVirtualUserTable and JDBCVirtualUserTable not work symetric

2007-01-04 Thread Stefano Bagnara
Norman Maurer (JIRA) wrote: [ https://issues.apache.org/jira/browse/JAMES-745?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462194 ] Norman Maurer commented on JAMES-745: - Any news one this ? I whould like to fix this

Re: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Stefano Bagnara
Danny Angus wrote: +0 Now I'm voting, but I trust you guys to come to the right decision without my input. Happy Norman? ;-) d. Happy Stefano, too ;-) When there are debates between 2 developers it is really important that the community stand up and cast a vote so that personal preferences

svn commit: r492539 - in /james/server/sandbox/handlerapi-experiment: ./ src/java/org/apache/james/smtpserver/core/filter/fastfail/ src/java/org/apache/james/util/junkscore/ src/test/org/apache/james/

2007-01-04 Thread norman
Author: norman Date: Thu Jan 4 04:11:22 2007 New Revision: 492539 URL: http://svn.apache.org/viewvc?view=revrev=492539 Log: Remove unused classed from prevois JunkScoreHandler implementation Removed:

svn commit: r492550 - /james/server/trunk/src/java/org/apache/james/mailrepository/MBoxMailRepository.java

2007-01-04 Thread norman
Author: norman Date: Thu Jan 4 04:47:29 2007 New Revision: 492550 URL: http://svn.apache.org/viewvc?view=revrev=492550 Log: Fix class CastException, fix comment and replace a Vector with ArrayList. See JAMES-721 Modified:

[jira] Resolved: (JAMES-721) MBoxMailRepository.remove(String key) causes ClassCastException

2007-01-04 Thread Norman Maurer (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-721?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Norman Maurer resolved JAMES-721. - Resolution: Fixed Assignee: Norman Maurer Fixed in trunk MBoxMailRepository.remove(String

[jira] Resolved: (JAMES-697) Exception when try login imapserver

2007-01-04 Thread Norman Maurer (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-697?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Norman Maurer resolved JAMES-697. - Resolution: Fixed After upgrade james to latest trun version this error was not seen anymore. It

[jira] Resolved: (JAMES-746) Reverse DNS Lookup Fails for Virtual Accounts

2007-01-04 Thread Norman Maurer (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-746?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Norman Maurer resolved JAMES-746. - Resolution: Invalid This is not a bug Reverse DNS Lookup Fails for Virtual Accounts

Re: svn commit: r492550 - /james/server/trunk/src/java/org/apache/james/mailrepository/MBoxMailRepository.java

2007-01-04 Thread Stefano Bagnara
[EMAIL PROTECTED] wrote: Fix class CastException, fix comment and replace a Vector with ArrayList. See JAMES-721 [..] ArrayList keys = new ArrayList(); -keys.add(key); +keys.add(retrieve(key)); Retrieving messages will slow down things. Maybe the best thing is to

Re: svn commit: r492550 - /james/server/trunk/src/java/org/apache/james/mailrepository/MBoxMailRepository.java

2007-01-04 Thread Norman Maurer
Stefano Bagnara schrieb: [EMAIL PROTECTED] wrote: Fix class CastException, fix comment and replace a Vector with ArrayList. See JAMES-721 [..] ArrayList keys = new ArrayList(); -keys.add(key); +keys.add(retrieve(key)); Retrieving messages will slow down things.

Re: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Bernd Fondermann
On 1/4/07, Stefano Bagnara [EMAIL PROTECTED] wrote: Danny Angus wrote: +0 Now I'm voting, but I trust you guys to come to the right decision without my input. Happy Norman? ;-) d. Happy Stefano, too ;-) When there are debates between 2 developers it is really important that the

[jira] Commented: (JAMES-746) Reverse DNS Lookup Fails for Virtual Accounts

2007-01-04 Thread Ant Kutschera (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-746?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462221 ] Ant Kutschera commented on JAMES-746: - Hi, If figured this problem out. The name in the HELO command is a bit of

[jira] Commented: (JAMES-746) Reverse DNS Lookup Fails for Virtual Accounts

2007-01-04 Thread Ant Kutschera (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-746?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_1246 ] Ant Kutschera commented on JAMES-746: - Just reading through this again, and there is a small point. I set the

[jira] Created: (JAMES-753) Support ESMTPA , ESMTPS , ESMTPSA headers

2007-01-04 Thread Norman Maurer (JIRA)
Support ESMTPA , ESMTPS , ESMTPSA headers - Key: JAMES-753 URL: https://issues.apache.org/jira/browse/JAMES-753 Project: James Issue Type: Improvement Reporter: Norman Maurer We should

[jira] Commented: (JAMES-336) Constructor MailImpl(MimeMessage) doesn't take all recipients

2007-01-04 Thread Norman Maurer (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-336?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462229 ] Norman Maurer commented on JAMES-336: - IMHO we should remove the MailImpl(MimeMessage) constructor at all. We

Re: Experimental Handler Branch

2007-01-04 Thread Serge Knystautas
On 1/4/07, Danny Angus [EMAIL PROTECTED] wrote: On 1/4/07, Joachim Draeger [EMAIL PROTECTED] wrote: I agree with everything you say, particularly about dialogue. I think Noel's original comment was only meant to highlight the fact that this dialogue should be public. James might be held back if

Re: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Danny Angus
On 1/4/07, Stefano Bagnara [EMAIL PROTECTED] wrote: Btw the vote included 3 options: should we consider your +0 like an Any option is ok for me, I don't have a preference ? Almost... any option you agree on is OK by me d. -

svn commit: r492618 - /james/server/sandbox/handlerapi-experiment/src/java/org/apache/james/smtpserver/core/DataCmdHandler.java

2007-01-04 Thread norman
Author: norman Date: Thu Jan 4 07:48:33 2007 New Revision: 492618 URL: http://svn.apache.org/viewvc?view=revrev=492618 Log: Add ESMTPSA to received header if ESMTP and Auth is used. See JAMES-753 Modified:

[jira] Resolved: (JAMES-753) Support ESMTPA , ESMTPS , ESMTPSA headers

2007-01-04 Thread Norman Maurer (JIRA)
[ https://issues.apache.org/jira/browse/JAMES-753?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Norman Maurer resolved JAMES-753. - Resolution: Fixed Fix Version/s: Next Major Assignee: Norman Maurer Support

Re: [handlerapi-experiment] Adding HookResultHook

2007-01-04 Thread Stefano Bagnara
Norman Maurer wrote: Stefano Bagnara schrieb: We should probably move logging of ok/deny operations from specific hooks to this Hook result interceptor. This sound like a good idea, but i have to think a bit more about this .. The first that open the workspace should add this to TODO so we

Re: [handlerapi-experiment] some information about the current sandbox

2007-01-04 Thread Danny Angus
On 1/4/07, Stefano Bagnara [EMAIL PROTECTED] wrote: Hi Danny, unfortunately we started the issues together because they are really tightly related. That's fine, if that's what you already did then it is done. I know how hard it can be, but sometimes you can just commit much more often to get

RE: problem in jsieve implementation

2007-01-04 Thread Steve Brewin
Lokesh Babu wrote: Hi, I had generated org.apache.jsieve.parser.generated package using Sieve.jjt by compiling with Javacc, please provide the information if is there any process to create SieveParserVisitor interface and AST related classes using javacc or any. These is all handled if

RE: Jsieve Configuration

2007-01-04 Thread Steve Brewin
Lokesh Babu wrote: Hi, i have to integrate Jsieve with james mailserver,can anyone please provide the process of jsieve integration with james mailserver/hmailserver. Take a look at package org.apache.jsieve.samples.james and be sure to read package.html. As noted, this is a partial

Re: Jsieve Configuration

2007-01-04 Thread robert burrell donkin
On 1/4/07, Steve Brewin [EMAIL PROTECTED] wrote: Lokesh Babu wrote: Hi, i have to integrate Jsieve with james mailserver,can anyone please provide the process of jsieve integration with james mailserver/hmailserver. Take a look at package org.apache.jsieve.samples.james and be sure to

Pluggable Configuration? [WAS Re: Jsieve Configuration]

2007-01-04 Thread robert burrell donkin
On 1/4/07, Steve Brewin [EMAIL PROTECTED] wrote: Lokesh Babu wrote: Hi, i have to integrate Jsieve with james mailserver,can anyone please provide the process of jsieve integration with james mailserver/hmailserver. Take a look at package org.apache.jsieve.samples.james and be sure to

RE: Jsieve Configuration

2007-01-04 Thread Steve Brewin
robert burrell donkin wrote: On 1/4/07, Steve Brewin [EMAIL PROTECTED] wrote: Lokesh Babu wrote: Hi, i have to integrate Jsieve with james mailserver,can anyone please provide the process of jsieve integration with james mailserver/hmailserver. Take a look at package

RE: Pluggable Configuration? [WAS Re: Jsieve Configuration]

2007-01-04 Thread Steve Brewin
robert burrell donkin wrote: On 1/4/07, Steve Brewin [EMAIL PROTECTED] wrote: Lokesh Babu wrote: Hi, i have to integrate Jsieve with james mailserver,can anyone please provide the process of jsieve integration with james mailserver/hmailserver. Take a look at package

RE: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Noel J. Bergman
any option you agree on is OK by me Any option that does not eliminate the use if InetAddress and unify the cache structure, as already done in trunk and done by me with a static method, is unacceptable to me. But keep making it more appealing for me to find other projects to work on than

RE: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Noel J. Bergman
Norman Maurer wrote: why we not just add the security property setting the the phoenix-loader ? Asked and answered. See my previous e-mails. --- Noel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Jsieve Configuration

2007-01-04 Thread Norman Maurer
Steve Brewin schrieb: robert burrell donkin wrote: On 1/4/07, Steve Brewin [EMAIL PROTECTED] wrote: Lokesh Babu wrote: Hi, i have to integrate Jsieve with james mailserver,can anyone please provide the process of jsieve integration with james

Re: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Norman Maurer
Noel J. Bergman schrieb: Norman Maurer wrote: why we not just add the security property setting the the phoenix-loader ? Asked and answered. See my previous e-mails. --- Noel Hmm, i must overseen this.. I will do a research again in the prevois e-mails. Thx for pointing

Re: [VOTE] InetAddress unbounded cache patch backport

2007-01-04 Thread Joachim Draeger
Am Donnerstag, den 04.01.2007, 14:55 +0100 schrieb Bernd Fondermann: On 1/4/07, Stefano Bagnara [EMAIL PROTECTED] wrote: Danny Angus wrote: +0 Now I'm voting, but I trust you guys to come to the right decision without my input. Happy Norman? ;-) When there are debates between