<?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: e-mail</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: e-mail</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 04:51:09 +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>
<item>
<title>so1o on "How let new user oneself establish a password, like a general forum?"</title>
<link>http://bbpress.org/forums/topic/how-let-new-user-oneself-establish-a-password-like-a-general-forum#post-1794</link>
<pubDate>Thu, 30 Nov 2006 20:44:28 +0000</pubDate>
<dc:creator>so1o</dc:creator>
<guid isPermaLink="false">1794@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ticket:&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/495&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/495&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>thomasklaiber on "How let new user oneself establish a password, like a general forum?"</title>
<link>http://bbpress.org/forums/topic/how-let-new-user-oneself-establish-a-password-like-a-general-forum#post-1793</link>
<pubDate>Thu, 30 Nov 2006 20:38:13 +0000</pubDate>
<dc:creator>thomasklaiber</dc:creator>
<guid isPermaLink="false">1793@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's called from the register.php (not the template) ... it's an internal function, so i would have to find another way.
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "How let new user oneself establish a password, like a general forum?"</title>
<link>http://bbpress.org/forums/topic/how-let-new-user-oneself-establish-a-password-like-a-general-forum#post-1790</link>
<pubDate>Thu, 30 Nov 2006 19:47:53 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1790@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You shouldn't have to overwrite it, just write the function you want, put it in my-plugins, and update the call from the templates.&#60;/p&#62;
&#60;p&#62;It's a problem, however, if the function you want to overwrite is only called from outside the template files.
&#60;/p&#62;</description>
</item>
<item>
<title>thomasklaiber on "How let new user oneself establish a password, like a general forum?"</title>
<link>http://bbpress.org/forums/topic/how-let-new-user-oneself-establish-a-password-like-a-general-forum#post-1789</link>
<pubDate>Thu, 30 Nov 2006 19:41:53 +0000</pubDate>
<dc:creator>thomasklaiber</dc:creator>
<guid isPermaLink="false">1789@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It can be done by a plugin, using the actions &#60;code&#62;bb_new_user&#60;/code&#62; and &#60;code&#62;extra_profile_info&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;But the problem would be, that an random password must be generated (no access to tweak insert-function) and then updated to the password the user has chosen. The the user would receive an email with his random password and not with his chosen password. This isn't cool :(&#60;/p&#62;
&#60;p&#62;Does somebody know, if there is a plugin-way to overwrite/rewrite a whole function (like &#60;code&#62;bb_new_user();&#60;/code&#62;)?
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "How let new user oneself establish a password, like a general forum?"</title>
<link>http://bbpress.org/forums/topic/how-let-new-user-oneself-establish-a-password-like-a-general-forum#post-1751</link>
<pubDate>Thu, 30 Nov 2006 03:20:56 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1751@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is currently the only way that bbPress gives new users passwords.  It serves a double purpose.   The first is a record of a password for a user if they don't end up changing it and second of all, it makes sure that people register with an actual email address (which stops most spam bots right there) because they have to retrieve their password from email.&#60;/p&#62;
&#60;p&#62;If you need something, I would assume it would require a core hack unless someone can develop a plugin.   Right now, I don't think anything is in the works.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>seanbinliu on "How let new user oneself establish a password, like a general forum?"</title>
<link>http://bbpress.org/forums/topic/how-let-new-user-oneself-establish-a-password-like-a-general-forum#post-1591</link>
<pubDate>Thu, 23 Nov 2006 16:26:16 +0000</pubDate>
<dc:creator>seanbinliu</dc:creator>
<guid isPermaLink="false">1591@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't need users get their password by e-mail, I hope they can establish a password by themself, what shall I to do? Thanks a lot.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
