hot questions tagged formmail - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T14:57:21Zhttp://stackoverflow.com/feeds/tag?tagnames=formmail&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1780875/looking-for-a-replacement-for-nms-formmail-pl1Looking for a replacement for NMS FormMail.plPaul Tomblin2009-11-23T02:48:38Z2009-11-23T12:48:52Z
<p>I have a simple contact form that I knocked up in a few minutes using <a href="http://nms-cgi.sourceforge.net/scripts.shtml" rel="nofollow">NMS FormMail.pl</a>. But the customer has requested that I have a second email address entry field, and validation that kicks them back if the two addresses are different. I could add the validation to FormMail.pl, but before I do, I thought I'd ask if there is a better solution, if only because this might already be a solved problem, and also because nobody has modified FormMail.pl in 4+ years.</p>
<p>I know this server has perl and PHP, and maybe Python as well. I've also got Tomcat running, but a servlet seems like overkill for this.</p>
http://stackoverflow.com/questions/971565/php-form-sending-information-to-limbo0PHP Form Sending Information to Limbo!drew2009-06-09T17:54:02Z2009-07-03T01:03:58Z
<p>I was told my client's quote form has not been generating very many emails. I have learned that although the form brings you to a confirmation page, the information never reaches the recipient.</p>
<p>I have altered the code so it goes to my office email for testing purposes. If I post code for the form elements below, would someone be able to spot what the problem might be?</p>
<p>Thank you very much!</p>
<p>Link to the quote page is <a href="http://autoglass-plus.com/quote.php" rel="nofollow">http://autoglass-plus.com/quote.php</a></p>
<p><strong>First is the form itself:</strong></p>
<pre><code><form id="quoteForm" name="form" action="form/index.php" method="post">
<fieldset>
<p> <strong>Contact Information:</strong><br />
</p>
<div>
<label for="firstname">First Name:<br />
</label>
<input type="text" size="30" name="firstname" class="txt" id="firstname" />
</div>
<div>
<label for="lastname">Last Name:<br />
</label>
<input type="text" size="30" name="lastname" class="txt" id="lastname" />
</div>
<div>
<label for="address">Address:<br />
</label>
<input type="text" size="30" name="address" class="txt" id="address" />
</div>
<div>
<label for="city">City:<br />
</label>
<input type="text" size="30" name="city" class="txt" id="city" />
</div>
<div>
<label for="state">State:<br />
</label>
<input type="text" size="30" name="state" class="txt" id="state" />
</div>
<div>
<label for="zip">Zip:<br />
</label>
<input type="text" size="30" name="zip" class="txt" id="zip" />
</div>
<div>
<label for="label">Phone:<br />
</label>
<input type="text" size="30" name="phone" class="txt" id="label" />
</div>
<div>
<label for="email">Email:<br />
</label>
<input type="text" size="30" name="email" class="txt" id="email" />
</div>
<p><br />
<b>Insurace Information</b></p>
<p><i>Auto Glass Plus in an Approved Insurance Vendor. Insurance claims require additional information that we will request when we contact you for your quote.</i></p>
<br />
<div>
<input type="checkbox" name="insurance" value="yes" />
Check here if this is an insurance claim.<br />
<label for="year">Insurance Provider:<br />
</label>
<input type="text" size="30" name="provider" class="txt" id="provider" />
</div>
<p><br />
<b>Vehicle Information:</b><br />
</p>
<div>
<label for="year">Vehicle Year :<br />
</label>
<input type="text" size="30" name="year" class="txt" id="year" />
</div>
<div>
<label for="make">Make: </label>
<br />
<input type="text" size="30" name="make" class="txt" id="make" />
</div>
<div>
<label for="model">Model:</label>
<br />
<input type="text" size="30" name="model" class="txt" id="model" />
</div>
<div>
<label for="body">Body Type:<br />
</label>
<select name="body" id="body">
<option>Select One</option>
<option value="2 Door Hatchback">2 Door Hatchback</option>
<option value="4 Door Hatchback">4 Door Hatchback</option>
<option value="2 Door Sedan">2 Door Sedan</option>
<option value="4 Door Sedan">4 Door Sedan</option>
<option value="Station Wagon">Station Wagon</option>
<option value="Van">Van</option>
<option value="Sport Utility">Sport Utility</option>
<option value="Pickup Truck">Pickup Truck</option>
<option value="Other Truck">Other Truck</option>
<option value="Recreational Vehicle">Recreational Vehicle</option>
<option value="Other">Other</option>
</select>
</div>
<p><b><br />
Glass in Need of Repair:</b><br />
</p>
<div>
<input type="checkbox" name="repairs" value="Windshield" />
Windshield<br />
<input type="checkbox" name="repairs" value="Back Glass" />
Back Glass<br />
<input type="checkbox" name="repairs" value="Driver&rsquo;s Side Window" />
Side Window*<br />
<input type="checkbox" name="repairs" value="Chip Repair" />
Chip Repair<br />
<input type="checkbox" name="repairs" value="Other" />
Other </div>
<p><strong>*Important:</strong> For side glass, please indicate the specific window that needs replacement <i>(e.g. passenger side rear door or driver side vent glass)</i>, and any tinting color preference in the <strong>Describe Damage </strong> field.</p>
<p><br />
<b>Describe Damage</b></p>
<div>
<textarea rows="6" name="damage" id="damage" cols="37" class="txt"></textarea>
</div>
<input type="hidden" name="thanks" value="../thanks.php" />
<input type="hidden" name="required_fields" value="firstname, lastname, email, phone" />
<input type="hidden" name="html_template" value="testform.tpl.html" />
<input type="hidden" name="mail_template" value="testmail.tpl.txt" />
<div class="submit">
<center>
<input type="submit" value="Submit Form" name="Submit" id="Submit" />
</center>
</div>
</fieldset>
</form>
</code></pre>
<p><strong>Then it sends to a file named index.php inside the "form" folder:</strong></p>
<pre><code><?php
$script_root = './';
$referring_server = 'www.wmsgroup.com, wmsgroup.com, scripts';
$allow_empty_referer = 'yes'; // (yes, no)
$language = 'en'; // (see folder 'languages')
$ip_banlist = '';
$ip_address_count = '0';
$ip_address_duration = '48';
$show_limit_errors = 'yes'; // (yes, no)
$log_messages = 'no'; // (yes, no)
$text_wrap = '65';
$show_error_messages = 'yes';
$attachment = 'no'; // (yes, no)
$attachment_files = 'jpg, gif,png, zip, txt, pdf, doc, ppt, tif, bmp, mdb, xls, txt';
$attachment_size = 100000;
$path['logfile'] = $script_root . 'logfile/logfile.txt';
$path['upload'] = $script_root . 'upload/'; // chmod 777 upload
$path['templates'] = $script_root . 'templates/';
$file['default_html'] = 'testform.tpl.html';
$file['default_mail'] = 'testmail.tpl.txt';
/*****************************************************
** Add further words, text, variables and stuff
** that you want to appear in the templates here.
** The values are displayed in the HTML output and
** the e-mail.
*****************************************************/
$add_text = array(
'txt_additional' => 'Additional', // {txt_additional}
'txt_more' => 'More' // {txt_more}
);
/*****************************************************
** Do not edit below this line - Ende der Einstellungen
*****************************************************/
/*****************************************************
** Send safety signal to included files
*****************************************************/
define('IN_SCRIPT', 'true');
/*****************************************************
** Load formmail script code
*****************************************************/
include($script_root . 'inc/formmail.inc.php')
?>
</code></pre>
<p>There is also formail.inc.php, testform.tpl.php, testform.tpl.text and then the confirmation page, thanks.php</p>
<p>I want to know how these all work together and what the problem could be.</p>
http://stackoverflow.com/questions/830472/do-perl-cgi-programs-have-a-buffer-overflow-or-script-vulnerability-for-html-cont2Do Perl CGI programs have a buffer overflow or script vulnerability for HTML contact forms?NorthK2009-05-06T16:26:17Z2009-05-07T14:03:58Z
<p>Greetings all,</p>
<p>My hosting company says it is possible to fill an HTML form text input field with just the right amount of garbage bytes to cause a buffer overflow/resource problem when used with Apache/HTTP POST to a CGI-Bin Perl script (such as <a href="http://nms-cgi.sourceforge.net/scripts.shtml" rel="nofollow">NMS FormMail</a>). </p>
<p>They say a core dump occurs at which point an arbitrary script (stored as part of the input field text) can be run on the server which can compromise the site. They say this isn't something they can protect against in their Apache/Perl configuration—that it's up to the Perl script to prevent this by limiting number of characters in the posted fields. But it seems like the core dump could occur before the script can limit field sizes.</p>
<p>This type of contact form and method is in wide use by thousands of sites, so I'm wondering if what they say is true. Can you security experts out there enlighten me—is this true? I'm also wondering if the same thing can happen with a PHP script. What do you recommend for a safe site contact script/method?</p>
<p>Thanks a lot,</p>
<p>NorthK</p>
http://stackoverflow.com/questions/565082/attach-file-in-formmail-php-formmail0Attach file in formmail. (php formmail)Viktor svensson2009-02-19T12:30:06Z2009-02-24T20:45:00Z
<p>I'm writing a mailform i php for placeing orders, and sense they have to get send a picture to me for the order to work properly, I'd like to be able to attach the file in the formmail. How shuld I do this? I have seen some different sulutions but non that I've complety understand.</p>
http://stackoverflow.com/questions/265956/php-wrong-referrer-error-when-submitting-a-mail-form0PHP "Wrong referrer" error when submitting a mail formgodleuf2008-11-05T17:29:06Z2008-11-05T18:16:44Z
<p>I am pretty new to php, but I am learning! I have a simple form on a client website. I am testing the form and when I click submit, I get the following error:</p>
<p>Form Mail Script</p>
<pre><code>Wrong referrer (referring site). For security reasons the form can only be used, if the referring page is part of this website.
Note for the Admin: Please add the name of your server to the referrer variable in the index.php configuration file: mywebsite.com
</code></pre>
<p>Powered by Form Mail Script</p>
<p>I am looking through the forms configuration and support files but I do not understand exactly what it is I need to change.</p>
<p>Can someone please explain to me what the Admin note above means and how to fix it?</p>
<p>Thanks.</p>