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 hb...@apache.org on 2001/04/21 07:43:42 UTC

cvs commit: jakarta-james/src/org/apache/james/pop3server POP3Handler.java POP3Server.java

hbedi       01/04/20 22:43:42

  Modified:    src/org/apache/james/pop3server POP3Handler.java
                        POP3Server.java
  Log:
  Split code into different blocks. Makes system cleaner, modular, and
  more flexible.
  
  Revision  Changes    Path
  1.41      +2 -0      jakarta-james/src/org/apache/james/pop3server/POP3Handler.java
  
  Index: POP3Handler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-james/src/org/apache/james/pop3server/POP3Handler.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- POP3Handler.java	2001/04/19 04:07:00	1.40
  +++ POP3Handler.java	2001/04/21 05:43:42	1.41
  @@ -82,6 +82,8 @@
   
       public void  contextualize( final Context context ) {
           servername = (String)context.get( Constants.HELO_NAME );
  +        if ( servername == null )
  +            servername = "POP3Server";
       }
   
       public void configure( final Configuration configuration )
  
  
  
  1.20      +1 -0      jakarta-james/src/org/apache/james/pop3server/POP3Server.java
  
  Index: POP3Server.java
  ===================================================================
  RCS file: /home/cvs/jakarta-james/src/org/apache/james/pop3server/POP3Server.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- POP3Server.java	2001/03/06 01:35:12	1.19
  +++ POP3Server.java	2001/04/21 05:43:42	1.20
  @@ -57,6 +57,7 @@
           getLogger().info( "POP3Listener using " + m_serverSocketType + " on port " + m_port );
           super.init();
           getLogger().info( "POP3Server ...init end" );
  +        System.out.println("Started POP3 Server");
       }
   }
       
  
  
  

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