Easily invalidate form in comment_post hook

The closest I could come up with is :

function comment_post_check() 
{
    if ($_POST['email'] == '[email protected]')
        wp_die( __('Error: Someone from Somewhere, you are banned') );

}

add_action('pre_comment_on_post', 'comment_post_check', 10);