On Wed, 8 Sep 2004, Ted Beaton wrote:
> if ($recip = user at somewhere.com) {
That's invalid perl. Should be:
if ($recip eq '<user at somewhere.com>') {
> Not fully understanding the complete workings I made a couple assumptions
> and tested.
That's a good way to break a mail system. :-)
Regards,
David.