#!/usr/bin/perl # # A *really* simple CGI handler for the GNOME Foundation membership # form. # # Author: Russell Steinthal # # my $MAIL_COMMAND = "/usr/lib/sendmail"; use CGI qw /-debug/; my $form = new CGI; $form->import_names ("FORM"); print $form->header; my $date = localtime; open MAIL, "|$MAIL_COMMAND"; print MAIL <\n"; print "Application Received\n"; print ""; print "

Thank you

\n"; print "

Thank you for your submission. It has been forwarded to the membership committee, which will inform you when it has been processed.

\n"; print "

If you have any questions, please e-mail membership\@gnome.org.

\n"; print "

\n"; print "
Return to the GNOME Foundation home page
\n"; print "\n"; print "\n";