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 ba...@apache.org on 2005/09/02 17:35:24 UTC

svn commit: r267223 - /james/server/trunk/src/java/org/apache/james/transport/mailets/DSNBounce.java

Author: bago
Date: Fri Sep  2 08:35:20 2005
New Revision: 267223

URL: http://svn.apache.org/viewcvs?rev=267223&view=rev
Log:
recipient must be MailAddress and not String (hopefully fixed JAMES-417)

Modified:
    james/server/trunk/src/java/org/apache/james/transport/mailets/DSNBounce.java

Modified: james/server/trunk/src/java/org/apache/james/transport/mailets/DSNBounce.java
URL: http://svn.apache.org/viewcvs/james/server/trunk/src/java/org/apache/james/transport/mailets/DSNBounce.java?rev=267223&r1=267222&r2=267223&view=diff
==============================================================================
--- james/server/trunk/src/java/org/apache/james/transport/mailets/DSNBounce.java (original)
+++ james/server/trunk/src/java/org/apache/james/transport/mailets/DSNBounce.java Fri Sep  2 08:35:20 2005
@@ -171,7 +171,7 @@
             return;
         }
 
-        String reversePath = originalMail.getSender().toString();
+        MailAddress reversePath = originalMail.getSender();
         if (isDebug)
             log("Processing a bounce request for a message with a reverse path.  The bounce will be sent to " + reversePath);
 



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