This is my configuration
<mailet match="All" class="Forward">
<forwardto>backup@localhost</forwardto>
</mailet>
<mailet "All" class="RemoteDelivery">
.
.
.
</mailet>
What happens is that there is an infinite loop around Forward mailet. The
mail recipients get changed and get put back on the spool, and goes through
the Forward mailet again.
I'm trying to get something like this happening
<mailet match="RecipientIsNot=backup@localhost" class="Forward">
<forwardto>backup@localhost</forwardto>
<passThrough>true</passThrough>
</mailet>
<mailet "All" class="RemoteDelivery">
.
.
.
</mailet>
How can I get JAMES to forward all mail to back@localhost and then send the
original mail as well? The end result should be 2 copies of the same
message in whatever@mailbox and backup@localhost.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>