Author: norman
Date: Wed Jan 13 17:55:50 2010
New Revision: 898861

URL: http://svn.apache.org/viewvc?rev=898861&view=rev
Log:
 SMTP Async I/O - Core command handler was not found in config (JAMES-949). Thx 
to Mario Zsilak for the patch

Modified:
    
james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/mina/AsyncSMTPServer.java

Modified: 
james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/mina/AsyncSMTPServer.java
URL: 
http://svn.apache.org/viewvc/james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/mina/AsyncSMTPServer.java?rev=898861&r1=898860&r2=898861&view=diff
==============================================================================
--- 
james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/mina/AsyncSMTPServer.java
 (original)
+++ 
james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/mina/AsyncSMTPServer.java
 Wed Jan 13 17:55:50 2010
@@ -194,7 +194,7 @@
         if (handlerchainConfig.getString("[...@corehandlerspackage]") == null)
             handlerchainConfig.addProperty("[...@corehandlerspackage]", 
CoreCmdHandlerLoader.class.getName());
         
-        handlerChain = getLoader().load(ProtocolHandlerChainImpl.class, 
getLogger(), handlerConfiguration);
+        handlerChain = getLoader().load(ProtocolHandlerChainImpl.class, 
getLogger(), handlerchainConfig);
         handlerChain.configure(handlerchainConfig);
         
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to