On Mon, 28 Apr 2003, JR wrote:
> Can anyone give me an example of what I need to do to send a copy of all
> mail to "auser".
sub filter_begin {
add_recipient('auser at mydomain.com');
}
Note the single quotes. "auser at mydomain.com" won't work; read a good
Perl book to find out why. :-)
--
David.