Occasionally, a post will get flagged by Akismet as spam, and it's because of the apparent limitation on links. Posts with 3 links do not get flagged, posts with 4 do. Is there a workaround for that, or barring that, can you whitelist specific posters so their posts are not checked by akismet or they are just passed through, like a whitelist?
Looking through bb-includes/akismet.php I found this on line 121
bb_trusted_roles() ... // Don't filter content from users with a trusted role
How do I set specific users for a trusted role? In user admin, I see only administrator, moderator, member, inactive and blocked. Everyone is a member now.
Also, I am integrated, if that matters.
Maybe something in wp_usermeta (bbpress_capabilities or user_level)?
Could I add 'member' to
./bb-includes/functions.php:1546: return apply_filters( 'bb_trusted_roles', array('moderator', 'administrator', 'keymaster') ); (knowing the downsides, whatever they may be?)
Thank you