Feature request: For Honeypot to offer an option for a more stringent server-side validation.
In particular, have a hidden form field be provisioned by the module (via hook_element_info()) with a unique value (e.g. honeypot_sid). honeypot_sid's will be generated and store in a new table with the following fields:
$honeypot_sid = db_insert(table-name)
->fields(array(
'uid' => $user->uid,
'sid' => session_id(),
'ip_address' => ip_address(),
'timestamp' => REQUEST_TIME,
'form_id' => $form_id,
'status' => $status,
))
->execute();
The validate callback would check the form_state values and make sure a valid honeypot_sid was a part of the form values.
Additionally, the feature would disabled page_caching for pages with such a form to avoid re-issuing a honeypot_sid.
Lastly, a theme function for the field would allow it to be customized as needed.
We have a working prototype as a helper module, but we feel it may be a good fit for the module itself.