OK, I have actually got a *very simple* procmail and perl script
working to do this. (I am trying to get a specific email address to send
mail to a perl script).
:0:lock.send_test
* ^TOscript(_at_)webmarquee(_dot_)com
| perl $HOME/send_test
#!/usr/bin/perl
open (FILE,">test.data");
while ( <> ) {
print FILE;
}
close (FILE);