PERL Installed PERL Modules Note that the number after the dash is the version we have installed. CGI.pm-2.42 DBI-0.93 GD-1.18 HTML-Parser-2.18 MD5-1.7 MIME-Base64-2.05 Msql-Mysql-modules-1.1831 (this is the module that allows perl to communicate with msql and mysql) ParallelUserAgent-2.31 libnet-1.0605 libwww-perl-5.33 How do I call a CGI Script Securely? Using your local CGI BIN, your path would look like this: https://secure_server.net/your_domain/cgi-bin/filename.pl The secure_sever.net represents the server your domain is hosted on. If you would like to use formmail.pl securely, you first need to: 1. Save a copy of this script on your local hard drive. 2. Upload the formmail.pl file into your local /cgi-bin directory. 3. Then, instead of calling the universal /cgi-sys directory, you would call your own /cgi-bin directory. It will look something like this: https://host#.dnsdomain.net/your_domain/cgi-bin/formmail.pl NOTE: You do NOT include the extension of your domain (ie. '.com', '.net', '.org'). What is your server path to PERL and Sendmail? Our server path to PERL is: !/usr/bin/perl The path to the Sendmail program is: /usr/lib/sendmail |