We have come up with a solution that will eliminate most signup form spam. The FORM tag generated by the "Signup Form Generator" looks like:
<form
action = "http://www.jangomail.com/APPLICATION/PGSF2.asp" method = "POST"
name="J3998964" id="J3998964">
Modifying this to:
<form enctype="multipart/form-data"
action = "http://www.jangomail.com/APPLICATION/PGSF2ENC.asp" method = "POST"
name="J3998964" id="J3998964">
will fix the issue of form spam, because by setting the form's encoding method, this will cause most robotic spam form submissions to fail because they will submit the form with the WRONG encoding type. Note the differences:
1. The addition of enctype="multipart/form-data" to the FORM tag.
2. Changing PGSF2.asp to PGSF2ENC.asp
Only use this method if your existing form's ACTION tag is set to PGSF2.asp. If your form's ACTION tag uses a different file, then you must re-create the signup form using the "Signup Form Generator" under the "Groups and Email Addresses" section, and then apply this method.