README
上传用户:shuntian
上传日期:2019-12-09
资源大小:18k
文件大小:36k
源码类别:

WEB邮件程序

开发平台:

HTML/CSS

  1. ##############################################################################
  2. # FormMail                        Version 1.93                               #
  3. # Copyright 1995-2009 Matt Wright mattw@scriptarchive.com                    #
  4. # Created 1995-06-09              Last Modified 2009-07-14                   #
  5. # Matt's Script Archive, Inc.:    http://www.scriptarchive.com/              #
  6. ##############################################################################
  7. # If you run into any problems while trying to configure this scripts, help  #
  8. # is available.  The steps you should take to get the fastest results, are:  #
  9. #       1) Read this file thoroughly.                                        #
  10. #       2) Consult the Matt's Script Archive Frequently Asked Questions:     #
  11. #               http://www.scriptarchive.com/faq/                            #
  12. #       3) If you are still having difficulty installing this script,        #
  13. #          you may wish to look at the resources listed here:                #
  14. #               http://www.scriptarchive.com/help/                           #
  15. #                                                                            #
  16. # Hopefully that will be able to help you solve your problems.  Due to time  #
  17. # constraints I can no longer offer technical support for this code.         #
  18. ##############################################################################
  19. # COPYRIGHT NOTICE                                                           #
  20. # Copyright 1995 - 2009 Matthew M. Wright  All Rights Reserved.              #
  21. #                                                                            #
  22. # FormMail may be used and modified free of charge by anyone so long as this #
  23. # copyright notice and the comments above remain intact.  By using this      #
  24. # code you agree to indemnify Matthew M. Wright from any liability that      #
  25. # might arise from its use.                                                  #
  26. #                                                                            #
  27. # Selling the code for this program without prior written consent is         #
  28. # expressly forbidden.  In other words, please ask first before you try and  #
  29. # make money off of my program.                                              #
  30. #                                                                            #
  31. # Obtain permission before redistributing this software over the Internet or #
  32. # in any other medium. In all cases copyright and header must remain intact #
  33. ##############################################################################
  34. FormMail is a universal WWW form to E-mail gateway.  There is only one
  35. required form input tag which must be specified in order for this script to
  36. work with your existing forms.  Other hidden configuration fields can also
  37. be used to enhance the operation of FormMail on your site.  The end of this
  38. file has a history that will explain the various changes FormMail has made
  39. throughout its lifetime.  Version 1.91 was an update attempting to get rid
  40. of the worst problems that have been made public in:
  41.         http://www.monkeys.com/anti-spam/formmail-advisory.pdf
  42. Versions 1.92 and 1.93 fixed a couple more bugs, which you can read about in
  43. the history located at the end of this file.
  44. The script, FormMail.pl, needs to be placed in your server's cgi-bin and the 
  45. anonymous WWW user must have the ability to read/execute the script.  If 
  46. you do not have access to your server's cgi-bin, yet you can execute cgi 
  47. scripts, you may want to try adding a .cgi extension to the FormMail.pl, 
  48. renaming it to FormMail.cgi. This is probably the more common option.
  49. Setting Up the FormMail Script:
  50. ===============================
  51. The FormMail.pl script does not have to be extensively configured in order 
  52. to work.  There are only two variables in the perl file which you will 
  53. need to define along with changing the top line of your script to match 
  54. the location of you Perl interpreter.
  55. Necessary Variables:
  56. --------------------
  57.   $mailprog = '/usr/lib/sendmail -i -t';
  58.     This variable must define the location to your server's sendmail 
  59.     program.  If this is incorrect, form results will not be mailed to you.
  60.     Specifying the parameters in this variable is new in v1.91, and we have
  61.     included the -i parameter so that a single period on a line by itself
  62.     will not end the message. -t instructs sendmail to read the recipient list
  63.     from the message text.
  64.   @referers = ('scriptarchive.com','YOUR_IP');
  65.     This array allows you to define the domains one which you allow forms
  66.     to reside and use this installation of FormMail.  If a user tries to 
  67.     put a form on another server, that is not scriptarchive.com, they 
  68.     will receive an error message when someone tries to fill out their form.
  69.     By placing scriptarchive.com in the @referers array, this also allows
  70.     www.scriptarchive.com, ftp.scriptarchive.com, any other http address
  71.     with scriptarchive.com in it and scriptarchive.com's IP address to access
  72.     this script as well, so no users will be turned away.
  73.     NOTE: This is not a security check. Referer headers can EASILY be faked.
  74.           Rather, it prevents someone on xyznotyou.com from using the FormMail
  75.           on your server to process forms on their server on a regular basis.
  76.           It remains in the script as a remnant of earlier versions when it
  77.           was used for security, but the @recipients variable is now used
  78.           to specify exactly who can receive e-mail from this installation.
  79.     As of version 1.7, the domains listed here are also used as the defaults
  80.     when checking valid recipient e-mail addresses.  You should either
  81.     include all domain names that you wish to have FormMail send e-mails to
  82.     in your @referers array or tailor the @recipients array by hand.
  83.   @valid_ENV = ('REMOTE_HOST','REMOTE_ADDR','REMOTE_USER','HTTP_USER_AGENT');
  84.     This array allows the administrator to specify a list of environment
  85.     variables that the user may request be added into the e-mail.  This is
  86.     a security patch that was advised at http://www.securityfocus.com/bid/1187
  87.     and was implemented by Peter D. Thompson Yezek at 
  88.     http://www.securityfocus.com/archive/1/62033.
  89.     Only environment variables listed in this array may be included in the
  90.     form field env_report.  So if you wanted to also know what URL a user was
  91.     submitting from, you could change @valid_ENV to:
  92.        @valid_ENV = ('REMOTE_HOST','REMOTE_ADDR','REMOTE_USER',
  93.                      'HTTP_USER_AGENT','HTTP_REFERER');
  94.     and then include HTTP_REFERER in your env_report form field.
  95.   @recipients = &fill_recipients(@referers);
  96.     If you wish to only allow e-mail addresses at the domain names in 
  97.     @referers to receive form results, you probably do not need to change this
  98.     variable.  However, if you get any 'Error: Bad/No Recipient' messages when
  99.     running FormMail, you may have to revisit @recipients and make sure you
  100.     have correctly listed all domains or configured this variable.
  101.     @recipients is the most important variable you need to configure.  It is an
  102.     array of regular expressions defining all valid recipients that can be 
  103.     specified.  In order for an e-mail to be sent to the recipient defined in
  104.     a form, the recipient e-mail address must match one of the elements in the
  105.     @recipients array.
  106.     SIMPLE SETUP:
  107.     For the most simple setup, place any domain name that you wish to send
  108.     form results to in the @referers array.  Warning: This allows those domains
  109.     to also access your FormMail script and utilize it to process their own
  110.     forms, but likely this is what you intended anyway.  If so, you can leave:
  111.     @recipients = &fill_recipients(@referers);
  112.     NO, THAT IS NOT WHAT I INTENDED!
  113.     Another alternative, then, is to set @recipients equal to the return value
  114.     of the fill-recipients function and pass this function all of the domains
  115.     to which e-mail may be addressed:
  116.     @recipients = &fill_recipients('domain.com','sub.domain.com','another.com');
  117.     You are now allowing e-mail to any username (provided it contains only A-Z,
  118.     a-z, 0-9, _, - or .) at those three domains.
  119.     Similarly, since @recipients is just an array, you could even do:
  120.     @recipients = (&fill_recipients('domain.com','sub.domain.com'),
  121.                    '^otheruser1@otherhost.com','^otheruser2@otherhost.com');
  122.     This would allow any recipient at domain.com and sub.domain.com similar
  123.     to the previous example, but would also allow your friends otheruser1 and
  124.     otheruser2 on otherhost.com to use your FormMail! Of course, you will need
  125.     to add otherhost.com into your @referers array if a form is on their host!
  126.     HOW DOES THAT WORK?
  127.     When the fill_recipients function is called on an array of domain names,
  128.     it turns them into regular expressions. These regular expressions will only
  129.     allow e-mail messages to go to a recipient with an e-mail address in the
  130.     following format:
  131.         [A-Za-z0-9_-.]+@domain.com
  132.     where domain.com is specified in @referers. For any IP addresses
  133.     in @referers, the following address formats are valid:
  134.         [A-Za-z0-9_-.]+@[192.168.1.1]
  135.     where 192.168.1.1 is the specified IP address in @referers.
  136.     What this means in english is that the only valid addresses are those
  137.     to usernames that include only letters, numbers, underscores, dashes or 
  138.     periods and an exact domain name or IP address that was specified in the
  139.     @referers array.  Depending on your needs, this may be too broad or not
  140.     broad enough.
  141.     WHAT IF YOU NEED MORE FLEXIBILITY??
  142.     The way FormMail validates a recipient address is to check the supplied
  143.     recipient(s) in the submitted form against each element in the array
  144.     @recipients (which is a list of Perl regular expressions). If any valid
  145.     recipients are found, they will receive a copy of the message.
  146.     Using the examples of @referers = ('domain.com','192.168.1.1'); and the
  147.     default usage of setting @recipients = &fill_recipients(@referers), the
  148.     contents of @recipients are now the same as if you had written:
  149.     @recipients = ('^[w-.]+@domain.com', '^[w-.]+@[192.168.1.1]');
  150.     What these regular expressions instruct FormMail to do is require that any
  151.     e-mail address passed in as a recipient of the form submission match at
  152.     least one of those two formats. The following are examples of valid
  153.     and invalid recipients for this exact setup:
  154.        VALID:
  155.          user@domain.com, First.Last@domain.com, Last-First@domain.com
  156.          user_name@domain.com, user023@domain.com, etc.
  157.          user@[192.168.1.1], First.Last@[192.168.1.1], Last-First@[192.168.1.1]
  158.          user_name@[192.168.1.1], user023@[192.168.1.1], etc.
  159.        INVALID: (using these in your form field 'recipient' will trigger error)
  160.          user%name@domain.com, user(name)@domain.com, first:last@domain.com
  161.          <user@domain.com>, <user@other.com>domain.com, user@192.168.1.1
  162.          user@newdomain.com, user@sub.domain.com, user@domainname.com
  163.     Essentially, it only allows A-Z, a-z, 0-9, _, - and . in the local address
  164.     area (before the @, represented as [w-.]+ in regular expression speak)
  165.     and requires the domain name to match exactly. When mailing to an IP 
  166.     address, it must be enclosed in [].
  167.     BUT I NEED TO MATCH MORE CHARACTERS IN THE USERNAME!
  168.     Let's say you need to be able to deliver e-mail to an address like:
  169.         last:first@domain.com
  170.     This requires that the ':' character now be allowed into the portion of
  171.     the recipient field before the domain name.  You could then modify
  172.     @recipients to read:
  173.     @recipients = ('^[w-.:]+@domain.com');
  174.     BUT BE CAREFUL!!!!
  175.     Allowing certain characters could be VERY dangerous, especially if the
  176.     characters are: %, <, >, (, ) or any newlines.  You can read:
  177.         http://web.nps.navy.mil/~miller/percent-hack.html
  178.     for information on exactly why the % character could be dangerous. And
  179.     the document that prompted 1.91 explains why some of the others could
  180.     lead to problems:
  181.         http://www.monkeys.com/anti-spam/formmail-advisory.pdf
  182.     I ONLY WANT CERTAIN ADDRESSES TO WORK!
  183.     Let's say you only want yourself@yourdomain.com to be able to receive
  184.     any form submissions.  You should then set the @recipients array to:
  185.     @recipients = ('^yourself@yourdomain.com');
  186.     Now the only valid recipient is that one e-mail address.
  187.     If there are several, simply do:
  188.     @recipients = ('^user1@yourdomain.com','^user2@their.domain.com');
  189.     CAN I USE SOMETHING EASIER?
  190.     Prior versions of FormMail recommended settings for @recipients like:
  191.         @recipients = ('domain.com','192.168.1.1');  OR
  192.         @recipients = ('^joe@somewhereelse.com');
  193.     The first is bad because it can be easily tricked by submitting a recipient
  194.     such as spamvictim%elsewhere.com@domain.com.  The second is MUCH better,
  195.     but since it is used as a regular expression, and '.' can mean ANY
  196.     character, a hacker could use joe@somewhereelseXcom to get past a valid
  197.     recipient check. This is not a very big deal in most cases.
  198.     WHAT IS THIS ^ CHARACTER AND WHY SO MANY 's??
  199.     In regular expressions, the ^ means "beginning of string". By default,
  200.     FormMail places a $ at the end of the match, which means "end of string".
  201.     By using both ^ and $ in regular expression matching, FormMail can match a
  202.     string exactly.  You only need to worry about including the ^, which is
  203.     STRONGLY recommended for all regular expressions in the array.
  204.     The  character is used to escape a character that otherwise means 
  205.     something special in regular expressions. For instance, you now see every
  206.     '.' being escaped with a '', as '.' means ANY CHARACTER, whereas '.'
  207.     requires that it match ONLY a period.
  208.     If you need a regular expression matching solution even more specific than
  209.     the above examples explain, I recommend picking up a book on Perl.
  210. Your FormMail program is now configured.
  211. -----------------------------------------------------------------------------
  212. Form Configuration:
  213. ===================
  214. The action of your form needs to point towards this script (obviously), and 
  215. the method must be POST or GET in capital letters.  Version 1.5 of FormMail 
  216. offers many new ways to code your form to tailor the resulting HTML page 
  217. and the way the script performs.  Below is a list of form fields you can 
  218. use and how to implement them.
  219. Necessary Form Fields:
  220. ======================
  221. There is only one form field that you must have in your form, for 
  222. FormMail to work correctly.  This is the recipient field.
  223. Field:       recipient
  224. Description: This form field allows you to specify to whom you wish for your
  225.              form results to be mailed.  Most likely you will want to
  226.              configure this option as a hidden form field with a value equal
  227.              to that of your e-mail address. 
  228.              As of version 1.8, You can include multiple recipients by 
  229.              separating the values with commas. 
  230. Syntax:
  231.              <input type=hidden name="recipient" value="email@your.host.com">
  232.              OR  <input type=hidden name="recipient" 
  233.                                 value="user@yourhost.com,user2@yourhost.com">
  234. -----------------------------------------------------------------------------
  235. Optional Form Fields:
  236. =====================
  237. Field:       subject
  238. Description: The subject field will allow you to specify the subject that you
  239.              wish to appear in the e-mail that is sent to you after this form
  240.              has been filled out.  If you do not have this option turned on,
  241.              then the script will default to a message subject: WWW Form
  242.              Submission
  243. Syntax:
  244.              If you wish to choose what the subject is:
  245.               <input type=hidden name="subject" value="Your Subject">
  246.              To allow the user to choose a subject:
  247.               <input type=text name="subject">
  248. -----------------------------------------------------------------------------
  249. Field:       email
  250. Description: This form field will allow the user to specify their return
  251.              e-mail address.  If you want to be able to return e-mail to your
  252.              user, I strongly suggest that you include this form field and
  253.              allow them to fill it in.  This will be put into the From:
  254.              field of the message you receive.  If you want to require an
  255.              email address with valid syntax, add this field name to the
  256.              'required' field.
  257. Syntax:
  258.              <input type=text name="email">
  259. -----------------------------------------------------------------------------
  260. Field:       realname
  261. Description: The realname form field will allow the user to input their real
  262.              name.  This field is useful for identification purposes and will
  263.              also be put into the From: line of your message header.
  264. Syntax: 
  265.              <input type=text name="realname">
  266. -----------------------------------------------------------------------------
  267. Field:       redirect
  268. Description: If you wish to redirect the user to a different URL, rather than
  269.              having them see the default response to the fill-out form, you
  270.              can use this hidden variable to send them to a pre-made HTML
  271.              page.
  272. Syntax:
  273.              To choose the URL they will end up at:
  274.                <input type=hidden name="redirect" 
  275.                                   value="http://your.host.com/to/file.html">
  276.              To allow them to specify a URL they wish to travel to once the
  277.              form is filled out:
  278.                <input type=text name="redirect">
  279. -----------------------------------------------------------------------------
  280. Field:       required
  281. Version:     1.3 & Up
  282. Description: You can now require for certain fields in your form to be filled
  283.              in before the user can successfully submit the form.  Simply
  284.              place all field names that you want to be mandatory into this
  285.              field.  If the required fields are not filled in, the user will
  286.              be notified of what they need to fill in, and a link back to
  287.              the form they just submitted will be provided.
  288.              To use a customized error page, see 'missing_fields_redirect'
  289. Syntax:
  290.              If you want to require that they fill in the email and phone
  291.              fields in your form, so that you can reach them once you have
  292.              received the mail, use a syntax like:
  293.                <input type=hidden name="required" value="email,phone">
  294. -----------------------------------------------------------------------------
  295. Field:       env_report
  296. Version:     1.3 & Up
  297. Description: Allows you to have Environment variables included in the
  298.              e-mail message you receive after a user has filled out your
  299.              form.  Useful if you wish to know what browser they were using,
  300.              what domain they were coming from or any other attributes
  301.              associated with environment variables.  The following is a short
  302.              list of valid environment variables that might be useful:
  303.              REMOTE_HOST     - Sends the hostname making a request.
  304.              REMOTE_ADDR     - Sends the IP address of the remote host making
  305.                                the request.
  306.              REMOTE_USER     - If server supports authentication and script
  307.                                is protected, this is the username they have
  308.                                authenticated as. *This is not usually set.*
  309.              HTTP_USER_AGENT - The browser the client is using to send the
  310.                                request.  
  311.              There are others, but these are a few of the most useful.  For
  312.              more information on environment variables, see:
  313.             http://www.cgi-resources.com/Documentation/Environment_Variables/
  314. Syntax:
  315.              If you wanted to find the remote host and browser sending the
  316.              request, you would put the following into your form:
  317.               <input type=hidden name="env_report" value="REMOTE_HOST,
  318.                                                            HTTP_USER_AGENT">
  319. -----------------------------------------------------------------------------
  320. Field:       sort
  321. Version:     1.4 & Up
  322. Description: This field allows you to choose the order in which you wish 
  323.              for your variables to appear in the e-mail that FormMail
  324.              generates.  You can choose to have the field sorted
  325.              alphabetically or specify a set order in which you want the
  326.              fields to appear in your mail message.  By leaving this field
  327.              out, the order will simply default to the order in which the 
  328.              browsers sends the information to the script (which is usually
  329.              the exact same order as they appeared in the form.)  When
  330.              sorting by a set order of fields, you should include the phrase
  331.              "order:" as the first part of your value for the sort field, and
  332.              then follow that with the field names you want to be listed in
  333.              the e-mail message, separated by commas.  Version 1.6 allows a
  334.              little more flexibility in the listing of ordered fields, in
  335.              that you can include spaces and line breaks in the field without
  336.              it messing up the sort.  This is helpful when you have many form
  337.              fields and need to insert a line wrap.
  338. Syntax:
  339.              To sort alphabetically:
  340.                <input type=hidden name="sort" value="alphabetic">
  341.              To sort by a set field order:
  342.                <input type=hidden name="sort" value="order:name1,name2,
  343.                                                    name3,etc...">
  344. -----------------------------------------------------------------------------
  345. Field:       print_config
  346. Version:     1.5 & Up
  347. Description: print_config allows you to specify which of the config 
  348.              variables you would like to have printed in your e-mail message.
  349.              By default, no config fields are printed to your e-mail.  This
  350.              is because the important form fields, like email, subject, etc.
  351.              are included in the header of the message.  However some users
  352.              have asked for this option so they can have these fields printed
  353.              in the body of the message.  The config fields that you wish to
  354.              have printed should be in the value attribute of your input tag
  355.              separated by commas.
  356. Syntax:
  357.              If you want to print the email and subject fields in the body of
  358.              your message, you would place the following form tag:
  359.               <input type=hidden name="print_config" value="email,subject">
  360. -----------------------------------------------------------------------------
  361. Field:       print_blank_fields
  362. Version:     1.6
  363. Description: print_blank_fields allows you to request that all form fields
  364.              are printed in the return HTML, regardless of whether or not
  365.              they were filled in.  FormMail defaults to turning this off, so
  366.              that unused form fields aren't e-mailed.
  367. Syntax:
  368.              If you want to print all blank fields:
  369.               <input type=hidden name="print_blank_fields" value="1">
  370. ----------------------------------------------------------------------------
  371. Field:       title
  372. Version:     1.3 & Up
  373. Description: This form field allows you to specify the title and header that
  374.              will appear on the resulting page if you do not specify a
  375.              redirect URL.
  376. Syntax:
  377.              If you wanted a title of 'Feedback Form Results':
  378.               <input type=hidden name="title" value="Feedback Form Results">
  379. -----------------------------------------------------------------------------
  380. Field:       return_link_url
  381. Version:     1.3 & Up
  382. Description: This field allows you to specify a URL that will appear, as
  383.              return_link_title, on the following report page.  This field
  384.              will not be used if you have the redirect field set, but it is
  385.              useful if you allow the user to receive the report on the
  386.              following page, but want to offer them a way to get back to
  387.              your main page.
  388. Syntax:
  389.              <input type=hidden name="return_link_url" 
  390.              value="http://your.host.com/main.html">
  391. -----------------------------------------------------------------------------
  392. Field:       return_link_title
  393. Version:     1.3 & Up
  394. Description: This is the title that will be used to link the user back to the
  395.              page you specify with return_link_url.  The two fields will be
  396.              shown on the resulting form page as:
  397.              <ul>
  398.               <li><a href="return_link_url">return_link_title</a>
  399.              </ul>
  400. Syntax:
  401.              <input type=hidden name="return_link_title"
  402.                                                   value="Back to Main Page">
  403. -----------------------------------------------------------------------------
  404. Field:       missing_fields_redirect
  405. Version:     1.6
  406. Description: This form field allows you to specify a URL that users will be
  407.              redirected to if there are fields listed in the required form
  408.              field that are not filled in.  This is so you can customize an
  409.              error page instead of displaying the default.
  410. Syntax:
  411.              <input type=hidden name="missing_fields_redirect"
  412.                                     value="http://your.host.com/error.html">
  413. -----------------------------------------------------------------------------
  414. Field:       background
  415. Version:     1.3 & Up
  416. Description: This form field allow you to specify a background image that
  417.              will appear if you do not have the redirect field set.  This
  418.              image will appear as the background to the form results page.
  419. Syntax:
  420.              <input type=hidden name="background"
  421.                                      value="http://your.host.com/image.gif">
  422. -----------------------------------------------------------------------------
  423. Field:       bgcolor
  424. Version:     1.3 & Up
  425. Description: This form field allow you to specify a bgcolor for the form
  426.              results page in much the way you specify a background image.
  427.              This field should not be set if the redirect field is.
  428. Syntax:
  429.              For a background color of White:
  430.               <input type=hidden name="bgcolor" value="#FFFFFF">
  431. -----------------------------------------------------------------------------
  432. Field:       text_color
  433. Version:     1.3 & Up
  434. Description: This field works in the same way as bgcolor, except that it
  435.              will change the color of your text.
  436. Syntax:
  437.              For a text color of Black:
  438.               <input type=hidden name="text_color" value="#000000">
  439. -----------------------------------------------------------------------------
  440. Field:       link_color
  441. Version:     1.3 & Up
  442. Description: Changes the color of links on the resulting page.  Works in the
  443.              same way as text_color.  Should not be defined if redirect is.
  444. Syntax:
  445.              For a link color of Red:
  446.               <input type=hidden name="link_color" value="#FF0000">
  447. -----------------------------------------------------------------------------
  448. Field:       vlink_color
  449. Version:     1.3 & Up
  450. Description: Changes the color of visited links on the resulting page. Works
  451.              exactly the same as link_color.  Should not be set if redirect
  452.              is.
  453. Syntax:
  454.              For a visited link color of Blue:
  455.               <input type=hidden name="vlink_color" value="#0000FF">
  456. -----------------------------------------------------------------------------
  457. Field:       alink_color
  458. Version:     1.4 & Up
  459. Description: Changes the color of active links on the resulting page. Works
  460.              exactly the same as link_color.  Should not be set if redirect
  461.              is.
  462. Syntax:
  463.              For a visited link color of Blue:
  464.               <input type=hidden name="alink_color" value="#0000FF">
  465. -----------------------------------------------------------------------------
  466. Any other form fields that appear in your script will be mailed back to 
  467. you and displayed on the resulting page if you do not have the redirect 
  468. field set.  There is no limit as to how many other form fields you can 
  469. use with this form, except the limits imposed by browsers and your server.
  470. -----------------------------------------------------------------------------
  471. Some of the possible uses of this script are:
  472. 1) You want to have a form that will be mailed to you, but aren't sure how to 
  473.    write the CGI script for it.
  474. 2) You are the webmaster of your site and want to allow users to use forms, 
  475.    but not to have their own cgi-bin directories, which can cause 
  476.    security risks to your system.  You can set this script up and then 
  477.    allow all users to run off of it.
  478. 3) Want to have one script to parse all of your html forms and mail them 
  479.    to you.
  480. -----------------------------------------------------------------------------
  481. History:
  482. Version 1.0     06/11/95  -  This script was created.
  483. Version 1.1     08/03/95  -  A major hole in the script which allowed users 
  484.                              to run commands under your server's uid was 
  485.                              disabled, thanks to Paul Phillips, who noticed
  486.                              the error.
  487.                           -  The ability to redirect the user to a specified
  488.                              HTML file after they filled out a form was 
  489.                              added.
  490. Version 1.2     09/23/95  -  If the form field is one of the required or 
  491.                              optional 'special' fields, such as redirect, 
  492.                              recipient, subject, email, realname, etc... the
  493.                              script will not print these fields to either
  494.                              your mail message or to the user's screen when
  495.                              they are returned to a generic form response.
  496.                              It helps you so that things do not get 
  497.                              duplicated.
  498. Version 1.3     01/21/96  -  Much needed update finally completed
  499.                           -  Added form fields: env_report, bgcolor, 
  500.                              background, link_color, vlink_color, title,
  501.                              text_color, return_link_title, return_link_url 
  502.                              and required.
  503.                           -  Security hole, which allowed any user on any 
  504.                              system to bum off of your FormMail script, has
  505.                              been plugged up with the @referers variable.
  506.                           -  Report style in return html and e-mail touched 
  507.                              up a bit.
  508. Version 1.4     01/23/96  -  Added options: sort, alink_color 
  509.                           -  Fixed a few bugs from Version 1.3, namely the 
  510.                              fact that the link_colors weren't working well.
  511.                           -  FormMail now supports both the GET and POST 
  512.                              methods.
  513. Version 1.5     02/05/96  -  Sorting of Fields in E-Mail Response Fixed.
  514.                           -  print_config option added.
  515. Version 1.6     05/02/97  -  Sorting of fields by default was fixed to now
  516.                              sort in the order the fields are passed to
  517.                              FormMail from the web browser, which is usually
  518.                              the same order as they appear in the HTML form.
  519.                           -  The sort order: directive, env_report and 
  520.                              print_config parsing routines were made to 
  521.                              better compensate for line breaks and extra
  522.                              spaces in input for ease of use.
  523.                           -  Redirect error causing the redirect option to
  524.                              incorrectly work with https (secure servers)
  525.                              was fixed.
  526.                           -  Input of a '0' in a regular form field now
  527.                              recognized as input and sent back to user.
  528.                           -  Output of non-filled in form fields suppressed.
  529.                           -  E-mail addresses checked for correct syntax if
  530.                              designated a required field.
  531.                           -  Fields only printed if they contain a value or
  532.                              if the print_blank_fields option is set to 1.
  533.                           -  missing_fields_redirect added so you can route
  534.                              users who don't completely fill out the form to
  535.                              a pre-made HTML page.
  536.                           -  Parts of code optimized, especially in respect
  537.                              to the way config variables are handled.
  538. Version 1.7     07/27/01  -  Added in @recipients to defeat spamming attempts
  539.                           -  Added in @valid_ENV to allow administrators to
  540.                              specify what environment variables can be sent.
  541. Version 1.8     08/02/01  -  Fixed the recipients code to allow multiple
  542.                              recipients using the 'recipients' form field and
  543.                              commas. Under certain cases in v1.7, spam could
  544.                              still get through by appending a legit recipient
  545.                              to the list of intended spam victims.
  546.                           -  Moved send_email subroutine in front of 
  547.                              return_html as many people reported their web
  548.                              server would kill the FormMail process after the
  549.                              redirect command was issued and no e-mail would
  550.                              be sent.
  551. Version 1.9     08/03/01  -  Added in a further anti-spam check which would
  552.                              take advantage of newline characters in the 
  553.                              subject to send invalid e-mail.
  554.                           -  Removed a restriction when checking e-mail 
  555.                              addresses for validity that required a 2 - 3
  556.                              character domain extension.  With the new TLD's
  557.                              becoming available, it can no longer apply.
  558. Version 1.91    04/19/02  -  The same vulnerability that was patched in 1.9
  559.                              with the subject field still existed in the email
  560.                              and realname fields. Newline characters are no
  561.                              longer allowed in any fields that are placed in
  562.                              the header of the message.
  563.                           -  Much stronger default regular expression checking
  564.                              in the @recipients array is now implemented.  This
  565.                              will combat the % hack and other known exploits.
  566.                           -  The options for sendmail were moved into the
  567.                              $mailprog variable and -i was added so that single
  568.                              periods on a line will not cause the end of the
  569.                              message.
  570. Version 1.92    04/21/02  -  Removed cross-site scripting vulerabilities
  571.                              by converting all <, >, & and " into their HTML
  572.                              equivalents when displayed on a web page. These
  573.                              characters are left intact in the e-mail message.
  574.                           -  Now removes any null bytes from form input.
  575.                           -  Fixed field recognition so that '0' is now a
  576.                              valid input.  Supposedly fixed in v1.6.
  577.                           -  Fixed print_blank_fields
  578. Version 1.93    07/14/09  -  Removed cross-site scripting and header injection/
  579.                              http response splitting vulnerabilities from
  580.                              redirect and return_link_url fields.
  581. -----------------------------------------------------------------------------
  582. Matt Wright   -   mattw@scriptarchive.com   -   http://www.scriptarchive.com/