I've been using SouperMail as a form to mail processor because it's pretty versatile (can also dump data to mySQL, etc.) and now I need to put a captcha on my form. The problem is I'm a PHP programmer and I don't write in Perl although I get the gist of Perl code. So, since SouperMail is written in Perl, and since it's what processes the form data immediately after it's submitted, I can find an easy captcha solution to this that isn't going to involve surgery on SouperMail. So I'm thinking what I need to do is write a chunk of php code to intercept the form data, handle the captcha check, then pass the form data to SouperMail using curl. Or am I missing an easier solution?