<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Thoughts of JS &#187; BuddyPress e-mail notifications</title>
	<atom:link href="http://www.thoughtsofjs.com/tag/buddypress-e-mail-notifications/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thoughtsofjs.com</link>
	<description>Web development and freelance services</description>
	<lastBuildDate>Sat, 29 Oct 2011 06:38:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Moderate new user registration in BuddyPress</title>
		<link>http://www.thoughtsofjs.com/moderate-new-user-registration-in-buddypress.html</link>
		<comments>http://www.thoughtsofjs.com/moderate-new-user-registration-in-buddypress.html#comments</comments>
		<pubDate>Sun, 21 Mar 2010 12:20:52 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[Blog signups in Buddypress]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[BuddyPress e-mail notifications]]></category>
		<category><![CDATA[moderate new user]]></category>

		<guid isPermaLink="false">http://www.josephszenasi.com/?p=191</guid>
		<description><![CDATA[BuddyPress doesn&#8217;t look like a perfect script  to me, it has some missing parts.. One of these extremely important parts is the option to moderate new user registration (check them for spam).
Anyways, I am not going to waste your time with stories so, here&#8217;s what you have to do (or pay me to do it  ). This will allow you to be the one who receives the activation e-mail instead of the user. After you check the new profile you can click the activation link or just forward it to the new user.

Back up everything! Yeah, your entire server, that`s a good thing to do at least once a month!
Open up wp-content/plugins/buddypress/bp-core/bp-core-signup.php
Go to line 524, you should see this:
$to = apply_filters( 'bp_core_activation_signup_user_notification_to', $user_email );
In the above piece of code replace $user_email with $admin_email or &#8216;youremail@yourserver.com&#8217;
Now, 3 lines below that you have:
$message = apply_filters( 'bp_core_activation_signup_user_notification_message', $message );

Replace that line ...]]></description>
		<wfw:commentRss>http://www.thoughtsofjs.com/moderate-new-user-registration-in-buddypress.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Fix for BuddyPress e-mail notifications problem</title>
		<link>http://www.thoughtsofjs.com/fix-for-buddypress-e-mail-notifications-problem.html</link>
		<comments>http://www.thoughtsofjs.com/fix-for-buddypress-e-mail-notifications-problem.html#comments</comments>
		<pubDate>Sun, 21 Mar 2010 12:19:09 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[BuddyPress e-mail notifications]]></category>
		<category><![CDATA[Buddypress mail()]]></category>
		<category><![CDATA[Buddypress Private Messaging]]></category>
		<category><![CDATA[Buddypress SMTP]]></category>
		<category><![CDATA[e-mail notifications]]></category>
		<category><![CDATA[Email notification not working]]></category>

		<guid isPermaLink="false">http://www.josephszenasi.com/?p=194</guid>
		<description><![CDATA[I have a client who installed BudyPress and since then the mail() function stopped working. SMTP could not connect neither. I had to look into BudyPress&#8217; code to find the problem.
Here is a fast fix for this issue:

 Open up wp-content/plugins/buddypress/bp-core/bp-core-filters.php (back up everything you edit, you can never know..)
 Go to line 29, you should see this code:
return apply_filters( 'bp_core_email_from_address_filter', __( 'noreply', 'buddypress' ) . '@' . $domain[2] );

A fast fix is this:
return apply_filters( 'bp_core_email_from_address_filter', __( 'noreply', 'buddypress' ) . '@yoursite.com' );

Replace yoursite.com with your site&#8217;s URL.
It should work now.
Was this post useful? Buy me a beer!  
Note: I wanted to post this fix on their site but could not find a place where to create a new account. I suppose registration is disabled.
Incoming search terms:buddypress email notifications (41)buddypress email (38)buddypress registration not working (24)buddypress email notification (17)buddypress email notifications not working (10)buddypress noreply (9)buddypress emails (8)powered by ...]]></description>
		<wfw:commentRss>http://www.thoughtsofjs.com/fix-for-buddypress-e-mail-notifications-problem.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

