-
I was able to drop a uuencoded file into a form field, which left it alone. Unfortunately, the resultant email got interpreted by Thunderbird (and probably ohter mail clients) as if that uuencoded section where an attachment! It stopped the body of the email at that point, making one attachment out of the uuencode and another out of the remainder of the body.
Solutions?.
2009-09-23 20:15:08 UTC by nobody
-
davorg changed the public information on the nms project.
2009-05-17 17:52:21 UTC by davorg
-
davorg changed the public information on the nms project.
2009-05-17 17:08:48 UTC by davorg
-
davorg changed the public information on the nms project.
2009-05-17 16:38:18 UTC by davorg
-
Here is one way to add reCaptcha support, less than perfect, but it works. In case it doesn't post properly here is a link to it on the web displaying properly:
http://groups.google.com/group/recaptcha/browse_thread/thread/b4b35aa61353d485
These are notes for how I added reCaptcha support to the NMS version of FormMail.pl (http://nms-cgi.sourceforge.net/), a much better version of the...
2008-06-30 19:53:01 UTC by girardot
-
Our NMS FormMail script as been getting spammed as of late. It seems having CAPTCHA or at least an OPTION for CAPTCHA would be nice. reCAPTCHA (http://recaptcha.net/resources.html) looks like an easy thing to add/implement. The problem is I don't know where in the NMS FormMail script to add it myself (or I would). Obviously, one of the user configurations would be for the reCAPTCHA API keys (so...
2008-04-21 17:26:16 UTC by nobody
-
I'm not going to add this patch as it's outside the scope of a Formmail program, and this functionality is already available in TFMail (which we'd like to encourage people to use).
2008-03-02 17:03:27 UTC by davorg
-
It looks to me as though the existing code is exactly right. The method is called "check_method_is_post" and the logic basically says:
if ($method ne 'POST') {
# return an error
} else {
# everything is ok
}
I can't see any problem with the code as it exists.
2008-03-02 16:54:00 UTC by davorg
-
In addition, if you want fields like 'email' to come through into the csv file, you need to add include_config_NAME. Here's an example of a %more_config settings for setting the csv_file and include:
%more_config = (
'csv_file' => '/home/garlicgold/public_html/cgi/sample_form_db.csv',
'include_config_email' => 1,
);.
2008-02-28 23:32:27 UTC by kona
-
I needed to be able to write form submissions to a CSV file for backup and data manipulation. The following patch does the job.
NOTES:
1. It requires Text::CSV be availble
2. A new config parameter called 'csv_file' is expected with the path to write the file to
3. A header line is only output if the file exists and size is 0
4. If you change your form, you should reset your csv file...
2008-02-28 21:40:23 UTC by kona