<?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: Won't Send</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: Won't Send</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 23:11:41 +0000</pubDate>

<item>
<title>rslater on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13359</link>
<pubDate>Fri, 25 Jan 2008 03:14:09 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13359@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am trying to think if there is a work around // using what works .. I.E wordpress.  Since the passwords would be the same for both.. Maybe there is an angle I can take there..  Sign them up in wordpress and dump the new users into bbpress to edit profile/  or add the additional bbpress profile fieldsto wordpress profile edit..  Just thinking out loud..
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13357</link>
<pubDate>Fri, 25 Jan 2008 02:27:36 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13357@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hmm - back to the drawing board...
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13356</link>
<pubDate>Fri, 25 Jan 2008 00:26:16 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">13356@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm out of ideas I'm afraid.
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13355</link>
<pubDate>Thu, 24 Jan 2008 23:54:02 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13355@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sam can you refollow that thread above.  The plugin did not work.. any more ideas...  Would to have you additional help..  I cannot figure this out whatsoever.
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13335</link>
<pubDate>Thu, 24 Jan 2008 00:37:56 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13335@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sam.. Can you take a look at this thread and see if there is anything you know of to fix this issue.  Chrishajer has been helping me thus far and been a tremendous help.  We just cannot figure out this email issue.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/user-registration?replies=17&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/user-registration?replies=17&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13220</link>
<pubDate>Fri, 18 Jan 2008 17:26:24 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13220@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sam, a friend of mine tried this plugin on IIS 5.1 (Windows XP) and IIS 6 (Server 2K3) and still gets the 501 error and no mail.&#60;/p&#62;
&#60;p&#62;Would the trunk release be different that using the plugin in any way?  We can try that instead if it will do anything different.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13217</link>
<pubDate>Fri, 18 Jan 2008 11:20:55 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">13217@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Put this in a plugin file and activate it. It's a drop-in replacement for bb_mail() from the current trunk&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Fix bb_mail function
Plugin URI:
Description: Temporary replacement for bb_mail() function
Author: Sam Bauers
Author URI:
Version: 0.0.1
*/

if ( !function_exists( &#38;#39;bb_mail&#38;#39; ) ) :
function bb_mail( $to, $subject, $message, $headers = &#38;#39;&#38;#39; ) {
	if (!is_array($headers)) {
		$headers = trim($headers);
		$headers = preg_split(&#38;#39;@\r(?:\n{0,1})&#124;\n@&#38;#39;, $headers);
	}

	if (!count($headers) &#124;&#124; !count(preg_grep(&#38;#39;/^from:\s/im&#38;#39;, $headers))) {
		$from = parse_url(bb_get_option(&#38;#39;uri&#38;#39;));
		if ($from &#38;#38;&#38;#38; $from[&#38;#39;host&#38;#39;]) {
			$from = trim(preg_replace(&#38;#39;/^www./i&#38;#39;, &#38;#39;&#38;#39;, $from[&#38;#39;host&#38;#39;]));
			$headers[] = &#38;#39;From: &#38;quot;&#38;#39; . bb_get_option(&#38;#39;name&#38;#39;) . &#38;#39;&#38;quot; &#38;lt;bbpress@&#38;#39; . $from . &#38;#39;&#38;gt;&#38;#39;;
		}
	}
	$headers = trim(join(&#38;quot;\r\n&#38;quot;, $headers));

	return @mail($to, $subject, $message, $headers);
}
endif;
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>edwinfoo on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13211</link>
<pubDate>Fri, 18 Jan 2008 05:57:41 +0000</pubDate>
<dc:creator>edwinfoo</dc:creator>
<guid isPermaLink="false">13211@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have no backslashes (&#34;\&#34;) at all in my pluggable.php file :-(&#60;/p&#62;
&#60;p&#62;However, while I have the same problem of NO OUTBOUND EMAIL when I tested, it must work sometimes because I got some new members yesterday that are posting. But I've got a bunch of others whose last log on was &#34;NEVER&#34;....hmmmm&#60;/p&#62;
&#60;p&#62;Something is definitely wrong
&#60;/p&#62;</description>
</item>
<item>
<title>finalwebsites on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13205</link>
<pubDate>Thu, 17 Jan 2008 21:13:41 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">13205@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think that some mail headers are misformed, check the pluggable.php file in the include directory and replace the &#60;code&#62;\n&#60;/code&#62; with &#60;code&#62;\r\n&#60;/code&#62; (not sure if this will help
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13187</link>
<pubDate>Wed, 16 Jan 2008 22:14:58 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13187@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I suspect that IIS does not like something about the mail that's being handed off by bbPress.  Need someone with an IIS server and access to the SMTP logs that can help troubleshoot this.
&#60;/p&#62;</description>
</item>
<item>
<title>finalwebsites on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13183</link>
<pubDate>Wed, 16 Jan 2008 12:48:47 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">13183@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;just checked his response headers:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Connection: close
Date: Wed, 16 Jan 2008 12:47:21 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET, PHP/5.0.4
Content-Type: text/html

200 OK&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;it's a IIS webserver :D
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13174</link>
<pubDate>Tue, 15 Jan 2008 18:20:29 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13174@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Are you using IIS 5 or 6 as the server?  I started looking into it and it seems like the IIS SMTP server returns a 501 error when it receives the bbPress email.  Is yours IIS?  Where is the site hosted?
&#60;/p&#62;</description>
</item>
<item>
<title>nook77 on "EMAIL WON'T SEND, FROM ANYHTING"</title>
<link>http://bbpress.org/forums/topic/email-wont-send-from-anyhting#post-13047</link>
<pubDate>Sun, 06 Jan 2008 18:20:30 +0000</pubDate>
<dc:creator>nook77</dc:creator>
<guid isPermaLink="false">13047@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Everyone,&#60;/p&#62;
&#60;p&#62;I have read through tons of posts with email problems...and I have still not been able to resolve the issue I'm having. &#60;/p&#62;
&#60;p&#62;If you goto this URL, you will see that the mail test php file I put on my server works fine: &#60;a href=&#34;http://www.crookedhook.net/forum/mailtest.php&#34; rel=&#34;nofollow&#34;&#62;http://www.crookedhook.net/forum/mailtest.php&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;I recieve the email and everything. &#60;/p&#62;
&#60;p&#62;But when you try to reset your password (any user!) or just wait for EMAIL conformation about the forum.  The email is never sent and it never reaches the clients address.   JUNK MAIL folders are EMPTY, the mail is not getting caught up in that.  &#60;/p&#62;
&#60;p&#62;I had wordpress installed for this site, then we decided not to use wordpress and to go with BBPRESS.  So basically I deleted the wordpress folder, and uploaded the BBPRESS Files.  Put in my mySQL infor chaned a few things in config, so it has my email etc... and it worked! just the email isn't!&#60;/p&#62;
&#60;p&#62;Maybe I missed a setting or something in the setup?&#60;/p&#62;
&#60;p&#62;Hopefully someone can help!?  &#60;/p&#62;
&#60;p&#62;Talk to you all soon! &#60;/p&#62;
&#60;p&#62;CHEERS
&#60;/p&#62;</description>
</item>

</channel>
</rss>
