#!/usr/local/bin/perl require "cgi-lib.pl"; #Change this path if this is not the location of sendmail on your system $SENDMAIL = "/lib/sendmail -t"; #Change this to your email address. Single quotes used to avoid #interpretation of the @ sign by Perl. $RECIPIENT = 'boutell@boutell.com'; print "Content-type: text/html\n\n"; print "\n"; print "
\n"; #Parse the form arguments. Indicate that we want #the results to appear in "values". &ReadParse(*values); #Use the information #If any field is missing, complain! if ((! $values{"name"}) || (! $values{"email"}) || (! $values{"bug"}) || (! $values{"system"}) || (! $values{"version"}) || ($values{"system"} eq "PLEASE CHOOSE ONE") || ($values{"version"} eq "PLEASE CHOOSE ONE")) { print "