Author: norman
Date: Sat Aug 12 05:44:36 2006
New Revision: 431024

URL: http://svn.apache.org/viewvc?rev=431024&view=rev
Log:
fix format

Modified:
    
james/server/trunk/src/java/org/apache/james/smtpserver/core/filter/fastfail/ValidRcptMX.java

Modified: 
james/server/trunk/src/java/org/apache/james/smtpserver/core/filter/fastfail/ValidRcptMX.java
URL: 
http://svn.apache.org/viewvc/james/server/trunk/src/java/org/apache/james/smtpserver/core/filter/fastfail/ValidRcptMX.java?rev=431024&r1=431023&r2=431024&view=diff
==============================================================================
--- 
james/server/trunk/src/java/org/apache/james/smtpserver/core/filter/fastfail/ValidRcptMX.java
 (original)
+++ 
james/server/trunk/src/java/org/apache/james/smtpserver/core/filter/fastfail/ValidRcptMX.java
 Sat Aug 12 05:44:36 2006
@@ -39,8 +39,9 @@
 import org.apache.mailet.MailAddress;
 
 /**
- * Reject email with an MX which is 127.0.0.1. This class can be used to 
reject email to bogus MX which is
- * send from a authorized user or an authorized network. 
+ * Reject email with an MX which is 127.0.0.1. This class can be used to reject
+ * email to bogus MX which is send from a authorized user or an authorized
+ * network.
  */
 public class ValidRcptMX extends AbstractLogEnabled implements CommandHandler,
        Serviceable, Configurable {
@@ -87,15 +88,15 @@
     }
 
     /**
-     * @see 
org.apache.avalon.framework.service.Serviceable#service(ServiceManager)
-     */
+         * @see 
org.apache.avalon.framework.service.Serviceable#service(ServiceManager)
+         */
     public void service(ServiceManager arg0) throws ServiceException {
        setDNSServer((DNSServer) arg0.lookup(DNSServer.ROLE));
     }
 
     /**
-     * @see org.apache.james.smtpserver.CommandHandler#getImplCommands()
-     */
+         * @see org.apache.james.smtpserver.CommandHandler#getImplCommands()
+         */
     public Collection getImplCommands() {
        Collection c = new ArrayList();
        c.add("RCPT");
@@ -103,17 +104,18 @@
     }
 
     /**
-     * @see org.apache.james.smtpserver.CommandHandler#onCommand(SMTPSession)
-     */
+         * @see 
org.apache.james.smtpserver.CommandHandler#onCommand(SMTPSession)
+         */
     public void onCommand(SMTPSession session) {
        doRCPT(session);
     }
 
     /**
-     * Set the DNSServer
-     * 
-     * @param dnsServer The dnsServer
-     */
+         * Set the DNSServer
+         * 
+         * @param dnsServer
+         *                The dnsServer
+         */
     public void setDNSServer(DNSServer dnsServer) {
        this.dnsServer = dnsServer;
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to