Minh,
1) Where do you stick the custom mailets in the 2.1a build?
The .sar file is what used to be the .bar.
James 2.1 is built on a new version of Phoenix which has a number of
changes. If you are using more than just the Mailet API, you'll have some
changes to make in your code.
> For the current solution I've made my own mailet which simply extends the
> RemoteDelivery and copied some code from the Forward class.
You could go into Forward.java and add:
if(! (new Boolean(getInitParameter("passThrough"))).booleanValue()) {
mail.setState(Mail.GHOST);
at the end of the service method. That would cause it to honor the
passThrough directive. Alternatively, I think that you could have made the
change to Redirect that I posted this morning to fix the bug that you
reported.
--- Noel
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>