You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2009/09/08 20:27:36 UTC

svn commit: r812610 - /james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPHandlerChain.java

Author: norman
Date: Tue Sep  8 18:27:36 2009
New Revision: 812610

URL: http://svn.apache.org/viewvc?rev=812610&view=rev
Log:
Need to use ContainerUtil till avalon for configuration is replaced (JAMES-918)

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

Modified: james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPHandlerChain.java
URL: http://svn.apache.org/viewvc/james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPHandlerChain.java?rev=812610&r1=812609&r2=812610&view=diff
==============================================================================
--- james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPHandlerChain.java (original)
+++ james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPHandlerChain.java Tue Sep  8 18:27:36 2009
@@ -208,7 +208,10 @@
         ContainerUtil.service(handler, serviceManager);
 
         // configure the handler
-        //ContainerUtil.configure(handler, config);
+        
+        // will get removed after removing of avalon for config is complete
+        ContainerUtil.configure(handler, config);
+        
         if (handler instanceof org.apache.james.smtpserver.Configurable) {
         	((org.apache.james.smtpserver.Configurable) handler).configure(commonsConf);
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org