the way to avoid that is to attach the diff (as I found out recently :-)

> -----Original Message-----
> From: Sam Kirkpatrick [mailto:[EMAIL PROTECTED]]
> Sent: 18 June 2002 21:08
> To: James Developers List
> Subject: Re: [PATCH] Forward.java
> 
> 
> Here is the diff again without the line breaks.  Sorry about that.
> 
> -- Sam
> 
> Index: Forward.java
> ===================================================================
> RCS file: 
> /home/cvspublic/jakarta-james/src/java/org/apache/james/transport/
> mailets/Forward.java,v
> retrieving revision 1.2
> diff -u -r1.2 Forward.java
> --- Forward.java 18 Jan 2002 02:48:38 -0000 1.2
> +++ Forward.java 18 Jun 2002 17:46:11 -0000
> @@ -36,7 +36,9 @@
>  
>      public void service(Mail mail) throws MessagingException {
>          getMailetContext().sendMail(mail.getSender(), 
> newRecipients, mail.getMessage());
> -        mail.setState(Mail.GHOST);
> +        if(! (new 
> Boolean(getInitParameter("passThrough"))).booleanValue()) {
> +            mail.setState(Mail.GHOST);
> +        }
>      }
>  
>      public String getMailetInfo() {
> 
> 
> 
> 
> 
> 
> --
> To unsubscribe, e-mail:   
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: 
> <mailto:[EMAIL PROTECTED]>
> 

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

Reply via email to