When I do the following from a modified version of Matt Wright's FormMail.pl
script:
close (PGPCOMMAND);
I get the following output to stdout and the browser window that I don't
want:
Creating output file
Anyone know how to turn this off?
Thanks
Randal Newby
--
To unsubscribe, e-mail:
Nevermind...
$pgp_comand = "$pgp_path -r \"$pgp_public_key_user_id\" -at -o $output_file
>/dev/null
creates the unwanted output, and
$pgp_comand = "$pgp_path -r \"$pgp_public_key_user_id\" -at > $output_file
Does not.
Any ideas?
Randy
-----Original M