<?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: mail server</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: mail server</description>
<language>en</language>
<pubDate>Wed, 03 Dec 2008 00:26:19 +0000</pubDate>

<item>
<title>mdawaffe on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15767</link>
<pubDate>Fri, 25 Apr 2008 17:04:07 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">15767@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Since bb_mail() is in pluggable.php, it can be completely replaced by a plugin without having to modify any core files.&#60;/p&#62;
&#60;p&#62;I suggest you write your plugin to do that instead of requiring people to modify pluggable.php.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
Plugin Name: SMTP PEAR blah
*/

if ( !function_exists( &#38;#39;bb_mail&#38;#39; ) ) :
function bb_mail() {
    // my replacement for bb_mail()
}
endif;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>DJP on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15758</link>
<pubDate>Fri, 25 Apr 2008 13:49:16 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15758@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Woohoo!!! Got the PEAR-shaped workaround working.&#60;/p&#62;
&#60;p&#62;A guy called Rob Hartzenberg at my hosting provider wrote the plugin for bbpress that uses the PEAR mail package to allow authentication.&#60;/p&#62;
&#60;p&#62;All I needed to do was:&#60;/p&#62;
&#60;p&#62;1. download &#38;#38; edit the plugin file to reflect my own SMTP host, port number,  username (email address) &#38;#38; my password;&#60;/p&#62;
&#60;p&#62;2. replace the last line of the &#60;strong&#62;bb_mail()&#60;/strong&#62; function in &#60;strong&#62;&#34;bb-includes/pluggable.php&#60;/strong&#62; with 2 lines of code supplied in the installation instructions;&#60;/p&#62;
&#60;p&#62;3. Login as keymaster &#38;#38; activate the plugin.&#60;/p&#62;
&#60;p&#62;Voila!&#60;/p&#62;
&#60;p&#62;I will be uploading the plugin shortly as I reckon there will be  people in need of this workaround as quite a lot of hosting providers require SMTP authentication.&#60;/p&#62;
&#60;p&#62;What a relief :)&#60;/p&#62;
&#60;p&#62;many thanks to everyone that tried to assist &#38;#38; an even bigger THANK YOU to Rob at Imaginet.
&#60;/p&#62;</description>
</item>
<item>
<title>DJP on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15740</link>
<pubDate>Thu, 24 Apr 2008 10:45:04 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15740@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey sambauers&#60;/p&#62;
&#60;p&#62;Thanks for the response :)&#60;/p&#62;
&#60;p&#62;I just found out that the standard php &#60;strong&#62;mail()&#60;/strong&#62; function does not support SMTP authentication, and that the only way for me to rectify this problem is to either get my hosting provider to change their server settings, or  some sort of workaround using the PEAR Mail package which apparently provides supporting functions useful to multiple mailer backends. It currently suppors: PHP's native mail() function, sendmail, and SMTP.&#60;/p&#62;
&#60;p&#62;I will keep you posted because if my hosting provider isn't prepared to change his server authentication requirements, this PEAR-shaped workaround may turn out to be a good one for other bbpress users with the same problem.&#60;/p&#62;
&#60;p&#62;Thanks :)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15732</link>
<pubDate>Thu, 24 Apr 2008 00:12:47 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15732@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The bb_mail() function that sends emails uses the basic mail() function of PHP. That means that the web server needs to be able to send the mail. There is no built in way to set the mail server to anything else. This would be possible with a plugin, but I don't think that plugin exists.
&#60;/p&#62;</description>
</item>
<item>
<title>DJP on "Where is the setting for mail server config?"</title>
<link>http://bbpress.org/forums/topic/where-is-the-setting-for-mail-server-config#post-15712</link>
<pubDate>Wed, 23 Apr 2008 11:03:39 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15712@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi all&#60;/p&#62;
&#60;p&#62;Plz help me, I've read everything there is to read about problem emails &#38;#38; have also tried installing sambauer's bb_mail fix plugin with no luck.&#60;/p&#62;
&#60;p&#62;I had bbpress 0.9 installed on a previous hosting provider &#38;#38; the system would send out emails to new registrants without any problem.&#60;/p&#62;
&#60;p&#62;However, I have moved to a new hosting provider that requires authentication for the mail to be sent, and will not allow &#34;localhost&#34; as the outgoing mail server. Where do I find the php file that allows me to change it from localhost to a specific &#34;outgoing mail server&#34; domain?&#60;/p&#62;
&#60;p&#62;Is it even possible?&#60;/p&#62;
&#60;p&#62;Thanks :)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
