My formmail works if I leave out the captcha and verifytext requirement, but not with it in. I get a "no file found for verification". I think this occurred after I switched to https.
I checked another site with the same formmail with captcha that is working to make sure referrers are set up the same way. There are no special details that need to be set up in either form - just referrers.
I have 7 items "required" and made sure they are spelled the same way as the input names.
Here is the top of the form:
<FORM METHOD=POST ACTION="cgi-bin/formmail/FormMail.pl">
<input type=hidden name="recipient" value="info@example.com">
<input type=hidden name="subject" value="Free Quote">
<input type=hidden name="required" value="name, email, focus, pages, cart, when, verifytext">
Here is the captcha data:
<img src="/cgi-bin/formmail/captcha.cgi" alt="captcha"><br>
<input type="text" name="verifytext"><br>
Here is the referrers line in formmail.pl
my @referers =('example.com', 'www.example.com');
Can anyone see anything wrong?