<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Support Forums Tag: whitelist</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: whitelist</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 23:40:40 +0000</pubDate>

<item>
<title>bobbyh on "Akismet 4 link limit in posts or whitelist"</title>
<link>http://bbpress.org/forums/topic/akismet-4-link-limit-in-posts-or-whitelist#post-11562</link>
<pubDate>Fri, 19 Oct 2007 17:58:29 +0000</pubDate>
<dc:creator>bobbyh</dc:creator>
<guid isPermaLink="false">11562@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks Sam! :-)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Akismet 4 link limit in posts or whitelist"</title>
<link>http://bbpress.org/forums/topic/akismet-4-link-limit-in-posts-or-whitelist#post-11554</link>
<pubDate>Fri, 19 Oct 2007 06:31:38 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">11554@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Put this in a plugin file named '_addSuperuser.php' in the my-plugins directory:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function addSuperuserToArray($array)
{
     $array[] = &#38;#39;Superuser&#38;#39;;
     return $array;
}

add_filter(&#38;#39;bb_trusted_roles&#38;#39;, &#38;#39;addSuperuserToArray&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;br /&#62;
If there is no my-plugins directory in the bbPress root, just create it. The underscore at the start of the file name should make the file autoload, so it is available without activation in the admin area.
&#60;/p&#62;</description>
</item>
<item>
<title>bobbyh on "Akismet 4 link limit in posts or whitelist"</title>
<link>http://bbpress.org/forums/topic/akismet-4-link-limit-in-posts-or-whitelist#post-11553</link>
<pubDate>Fri, 19 Oct 2007 06:17:17 +0000</pubDate>
<dc:creator>bobbyh</dc:creator>
<guid isPermaLink="false">11553@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I ran into a similar problem. Specifically, I created a new Role called 'Superuser' that has capabilities between Member and Moderator. I don't want these users ever to be spam-filtered.&#60;/p&#62;
&#60;p&#62;I solved this by replacing this function in /bb-includes/functions.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;function bb_trusted_roles() {&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;return apply_filters( &#38;#39;bb_trusted_roles&#38;#39;, array(&#38;#39;moderator&#38;#39;, &#38;#39;administrator&#38;#39;, &#38;#39;keymaster&#38;#39;) );&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;with this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;function bb_trusted_roles() {&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;return apply_filters( &#38;#39;bb_trusted_roles&#38;#39;, array(&#38;#39;moderator&#38;#39;, &#38;#39;administrator&#38;#39;, &#38;#39;keymaster&#38;#39;, &#38;#39;Superuser&#38;#39;) );&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This works, but I hate hacking the core. Is there a way to do this with a plugin? I tried and tried, but I couldn't figure out how to array_push a new Role on that array. Can somebody help me, perhaps with their superior understanding of how add_filter works? :-)&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;-Bob
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Plugin: Restrict registration v2.0"</title>
<link>http://bbpress.org/forums/topic/plugin-restrict-registration-v20#post-6356</link>
<pubDate>Wed, 04 Apr 2007 00:08:25 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">6356@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is a complete overhaul of the restrict registration plugin, featuring:&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;Whitelist - limits registration to email addresses with specified domains&#60;/li&#62;
&#60;li&#62;Blacklist - stops registration of email addresses with specified domains, perfect for dealing with repeat bozos from a known domain name&#60;/li&#62;
&#60;li&#62;Wildcard domains - specify wildcards in lists, e.g. *.com, *.example.org&#60;/li&#62;
&#60;li&#62;Whitelist vs. blacklist resolution - logically deals with conflicts between whitelist and blacklist when wildcards are used (see configuration section in readme)&#60;/li&#62;
&#60;li&#62;Admin page - edit the lists in the bbPress admin area&#60;/li&#62;
&#60;li&#62;Show whitelist option - optionally show the whitelist domains on the registration form&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/44&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/44&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "trusted roles"</title>
<link>http://bbpress.org/forums/topic/trusted-roles#post-5957</link>
<pubDate>Mon, 26 Mar 2007 16:11:41 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5957@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You shouldn't have to, no.    I will see if mdawaffe can  do something up as soon as possible to fix this, even if it is a small release!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>altmejd on "trusted roles"</title>
<link>http://bbpress.org/forums/topic/trusted-roles#post-5952</link>
<pubDate>Mon, 26 Mar 2007 15:16:14 +0000</pubDate>
<dc:creator>altmejd</dc:creator>
<guid isPermaLink="false">5952@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;great! so then i shouldn't bother trying to create a plugin doing it?
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "trusted roles"</title>
<link>http://bbpress.org/forums/topic/trusted-roles#post-5926</link>
<pubDate>Sun, 25 Mar 2007 22:18:33 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5926@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It is a known problem that Akismet and the BOZO functions are not 'white-listing' trusted users and this is being addressed in 1.0 for sure and possibibly a release prior to this pretty soon!   &#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>altmejd on "trusted roles"</title>
<link>http://bbpress.org/forums/topic/trusted-roles#post-5923</link>
<pubDate>Sun, 25 Mar 2007 21:59:49 +0000</pubDate>
<dc:creator>altmejd</dc:creator>
<guid isPermaLink="false">5923@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there a way to mark users as trusted, so that their post cannot be identified as spam? It would be good if this happened automaticly when changing a post to 'not spam' after it has been marked by akismet as spam.&#60;br /&#62;
I don't think there are any bots acting as regular people at first, then spamming...&#60;br /&#62;
Anyway, some kind of whitelist is needed. &#60;/p&#62;
&#60;p&#62;Could the reason that many of my user's posts are being marked by akismet as spam be due to the fact that my forums are in swedish?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on ""Make sure to whitelist our domain" message inaccurate?"</title>
<link>http://bbpress.org/forums/topic/make-sure-to-whitelist-our-domain-message-inaccurate#post-5046</link>
<pubDate>Thu, 01 Mar 2007 18:33:37 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5046@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Good point - it's too late at that point.  Maybe state it on the previous page then, BEFORE they hit submit?
&#60;/p&#62;</description>
</item>
<item>
<title>drmike on ""Make sure to whitelist our domain" message inaccurate?"</title>
<link>http://bbpress.org/forums/topic/make-sure-to-whitelist-our-domain-message-inaccurate#post-5044</link>
<pubDate>Thu, 01 Mar 2007 18:22:08 +0000</pubDate>
<dc:creator>drmike</dc:creator>
<guid isPermaLink="false">5044@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;*chuckle* Wouldn't it be moot at this step anyway? The email has already been sent. Whitelisting after the fact isn't going to help.&#60;/p&#62;
&#60;p&#62;better idea may be to state to check the spam folder.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on ""Make sure to whitelist our domain" message inaccurate?"</title>
<link>http://bbpress.org/forums/topic/make-sure-to-whitelist-our-domain-message-inaccurate#post-4995</link>
<pubDate>Wed, 28 Feb 2007 14:09:34 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">4995@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I created a trac ticket:&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/601&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/601&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on ""Make sure to whitelist our domain" message inaccurate?"</title>
<link>http://bbpress.org/forums/topic/make-sure-to-whitelist-our-domain-message-inaccurate#post-4624</link>
<pubDate>Sun, 18 Feb 2007 13:52:14 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">4624@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;When registering on a bbPress forum, this is displayed after you submit your registration:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Make sure to whitelist our domain (http://www.mywebsite.com) so the confirmation email doesn't get caught by any filters.&#60;/p&#62;
&#60;/blockquote&#62;
&#60;p&#62;That's not really how whitelists work. Normally, you whitelist a domain or an email address, so wouldn't it be better to say this in &#60;a href=&#34;http://trac.bbpress.org/browser/trunk/bb-templates/kakumei/register.php#L11&#34;&#62;register.php on line 11&#60;/a&#62;:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php printf(__(&#38;quot;A password will be mailed to the email address you provide. Make sure to whitelist our email address (%s) so the confirmation email doesn&#38;#39;t get caught by any  filters.&#38;quot;), bb_get_option( &#38;#39;admin_email&#38;#39; )) ?&#38;gt; &#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Make sense?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Akismet 4 link limit in posts or whitelist"</title>
<link>http://bbpress.org/forums/topic/akismet-4-link-limit-in-posts-or-whitelist#post-2678</link>
<pubDate>Fri, 29 Dec 2006 14:05:47 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">2678@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;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?&#60;/p&#62;
&#60;p&#62;Looking through bb-includes/akismet.php I found this on line 121&#60;br /&#62;
&#60;code&#62;bb_trusted_roles() ... // Don&#38;#39;t filter content from users with a trusted role&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;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.&#60;/p&#62;
&#60;p&#62;Also, I am integrated, if that matters.&#60;/p&#62;
&#60;p&#62;Maybe something in wp_usermeta  (bbpress_capabilities or user_level)?&#60;/p&#62;
&#60;p&#62;Could I add 'member' to&#60;br /&#62;
&#60;code&#62;./bb-includes/functions.php:1546:       return apply_filters( &#38;#39;bb_trusted_roles&#38;#39;, array(&#38;#39;moderator&#38;#39;, &#38;#39;administrator&#38;#39;, &#38;#39;keymaster&#38;#39;) );&#60;/code&#62; (knowing the downsides, whatever they may be?)&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
</item>

</channel>
</rss>
