filter

jetpack_contact_form_is_spam

Filter whether the submitted feedback is considered as spam.

Parameters

$meta
array

Feedack values returned by the Akismet plugin.

false
bool

Is the submitted feedback spam? Default to false.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

You can use that filter to make sure that all emails, regardless of their Akismet status, are sent to you.
add_filter( 'jetpack_contact_form_is_spam', '__return_false', 11, 2 );