<?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 User Favorites: rslater</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums User Favorites: rslater</description>
<language>en</language>
<pubDate>Sun, 23 Nov 2008 00:08:06 +0000</pubDate>

<item>
<title>MigPilot on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-16268</link>
<pubDate>Thu, 15 May 2008 22:32:12 +0000</pubDate>
<dc:creator>MigPilot</dc:creator>
<guid isPermaLink="false">16268@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I got this on an IIS server too.&#60;/p&#62;
&#60;p&#62;The simple fix seemed to be to cut and paste the following into the new config file after the line &#34;$bb_table_prefix = 'bb_'; // Only letters, numbers and underscores please!&#34; ...&#60;/p&#62;
&#60;p&#62;// If your bbPress URL is &#60;a href=&#34;http://bbpress.example.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.example.com/forums/&#60;/a&#62; , the examples would be correct.&#60;br /&#62;
// Adjust the domain and path to suit your actual URL.&#60;br /&#62;
	// Just the domain name; no directories or path. There should be no trailing slash here.&#60;br /&#62;
	$bb-&#38;gt;domain = 'http://mydomain'; // Example: 'http://bbpress.example.com'&#60;br /&#62;
	// There should be both a leading and trailing slash here. '/' is fine if the site is in root.&#60;br /&#62;
	$bb-&#38;gt;path   = '/';				   // Example: '/forums/'&#60;/p&#62;
&#60;p&#62;Once the upgrade was done, I could go back and remove the lines and it all seemed to work.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-15912</link>
<pubDate>Thu, 01 May 2008 13:09:28 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15912@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You're absolutely right.  Sorry about that.  This is how it was done before the 0.9 release.  Now it looks like that option was moved into the database.  In the database in the &#60;code&#62;bb_topicmeta&#60;/code&#62; table, there is an entry with a &#60;code&#62;meta_key&#60;/code&#62; of &#60;code&#62;uri&#60;/code&#62; that holds this value.  I think that means it was entered when you went through the installation, and gets inserted into the database.   I just tried another installation with 0.9.0.2 and that value is prefilled in the form.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Site address (URL):

We have attempted to guess this, it&#38;#39;s usually correct, but change it here if you wish.&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#38;nbsp;&#60;br /&#62;
The correct URL was prefilled here.  When I clear it out and submit, I get the following error:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;Site address (URL): • This value is required to continue.&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;So, for some reason, it looks like this error check did not work for you, or the value that was inserted into the database is not valid.  Can you use a tool like phpMyAdmin to look at the database and see if you have a bb_topicmeta table, with a record that has a meta_key of &#60;code&#62;uri&#60;/code&#62; and see that the value is?  The record is meta_id 3 in my installation.&#60;/p&#62;
&#60;p&#62;If you can't do that, can you reinstall if you have not used the forum yet?&#60;/p&#62;
&#60;p&#62;Also, I see you're on IIS.   I wonder if there are any differences with hosting there from what I am used to, which is Linux and Apache.
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-15911</link>
<pubDate>Thu, 01 May 2008 12:23:20 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">15911@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I do not see $bb-&#38;gt;uri anywhere in the upgraded config file? or a place to assign the domain name
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-15910</link>
<pubDate>Thu, 01 May 2008 12:22:23 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">15910@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I do not see $bb-&#38;gt;uri anywhere in the upgraded config file?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-15895</link>
<pubDate>Wed, 30 Apr 2008 20:30:01 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15895@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Looks like that comes from bb-settings.php (line 156 in 0.9.0.1):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Die if no URI
if ( !$bb-&#38;gt;uri &#38;#38;&#38;#38; ( !defined(&#38;#39;BB_INSTALLING&#38;#39;) &#124;&#124; !BB_INSTALLING ) ) {
        bb_die( __(&#38;#39;Could not determine site URI&#38;#39;) );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I think that says &#34;If there is no $bb-&#38;gt;uri defined AND you're not installing, then die with this message.&#34;&#60;/p&#62;
&#60;p&#62;So, in your bb-config.php, what do you have defined for $bb-&#38;gt;uri?
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-15894</link>
<pubDate>Wed, 30 Apr 2008 18:45:08 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">15894@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Could not determine site URI..  Error on my upgrade?&#60;/p&#62;
&#60;p&#62;Homesandagents.com/go&#60;/p&#62;
&#60;p&#62;Do you know how to fix this error?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-14958</link>
<pubDate>Thu, 03 Apr 2008 15:21:00 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">14958@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Looks like you got it sorted out. Great!
&#60;/p&#62;</description>
</item>
<item>
<title>Sushubh on "upgrade error"</title>
<link>http://bbpress.org/forums/topic/upgrade-error#post-14922</link>
<pubDate>Thu, 03 Apr 2008 06:17:00 +0000</pubDate>
<dc:creator>Sushubh</dc:creator>
<guid isPermaLink="false">14922@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i installed the latest version on my real old installation. &#60;/p&#62;
&#60;p&#62;now i get this:&#60;/p&#62;
&#60;p&#62;Could not determine site URI&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.tradeshade.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.tradeshade.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-14164</link>
<pubDate>Fri, 29 Feb 2008 21:52:12 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14164@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;TJworld, did you try sambauers plugin:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/user-registration#post-13337&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/user-registration#post-13337&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And is it just registration emails with the password people are not receiving?
&#60;/p&#62;</description>
</item>
<item>
<title>TJworld on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-14160</link>
<pubDate>Fri, 29 Feb 2008 21:21:32 +0000</pubDate>
<dc:creator>TJworld</dc:creator>
<guid isPermaLink="false">14160@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;An update to my post above. I tried using a gmail.com address and that isn't refused, but the SMTP envelope is reported as&#60;/p&#62;
&#60;p&#62;Return-Path: &#38;lt;yyyyyyyyy@localhost&#38;gt;&#60;/p&#62;
&#60;p&#62;So the symptoms I'm seeing could be to do with tight rules at AOL and something in the standard configuration of Postfix. I've not seen this problem with any web applications that do user registration like this.
&#60;/p&#62;</description>
</item>
<item>
<title>TJworld on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-14159</link>
<pubDate>Fri, 29 Feb 2008 21:03:17 +0000</pubDate>
<dc:creator>TJworld</dc:creator>
<guid isPermaLink="false">14159@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've just encountered this with 0.8.3.1. As the mail server administrator I was getting delivery failure notifications which reported that the receiving SMTP host had rejected the email with:&#60;/p&#62;
&#60;p&#62;&#38;lt;xxxxx@aol.com&#38;gt;: host mailin-04.mx.aol.com[64.12.138.57] said: 501 SYNTAX&#60;br /&#62;
    ERROR IN PARAMETERS OR ARGUMENTS (in reply to MAIL FROM command)&#60;/p&#62;
&#60;p&#62;I increased logging on Postfix and tested it and found:&#60;/p&#62;
&#60;p&#62;mailin-04.mx.aol.com[64.12.138.57]: MAIL FROM:&#38;lt;yyyyyyyy@localhost&#38;gt;&#60;br /&#62;
mailin-04.mx.aol.com[64.12.138.57]: 501 SYNTAX ERROR IN PARAMETERS OR ARGUMENTS&#60;/p&#62;
&#60;p&#62;Where 'yyyyyyyy' is the mail server's local user account for the domain doing the sending.&#60;/p&#62;
&#60;p&#62;It looks as if the AOL server is rejecting the @localhost part of the MAIL FROM field. I've looked in the bbPress config.php and in the administration options of the dashboard but can't see why bbPress is using localhost.
&#60;/p&#62;</description>
</item>
<item>
<title>SessionX1 on "bbPress 0.8.3.1 released"</title>
<link>http://bbpress.org/forums/topic/bbpress-0831-released#post-13562</link>
<pubDate>Fri, 01 Feb 2008 16:51:39 +0000</pubDate>
<dc:creator>SessionX1</dc:creator>
<guid isPermaLink="false">13562@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;omg, your are so good. xD&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "bbPress 0.8.3.1 released"</title>
<link>http://bbpress.org/forums/topic/bbpress-0831-released#post-13561</link>
<pubDate>Fri, 01 Feb 2008 16:45:43 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13561@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This stylesheet is referenced in your html, but it's not actually there:&#60;br /&#62;
&#60;a href=&#34;http://www.wp-portal.de/my-templates/bbpress-forum/style2.css?v=8&#34; rel=&#34;nofollow&#34;&#62;http://www.wp-portal.de/my-templates/bbpress-forum/style2.css?v=8&#60;/a&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;404 Not Found
Not Found

The requested URL /my-templates/bbpress-forum/style2.css was not found on this server.&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>SessionX1 on "bbPress 0.8.3.1 released"</title>
<link>http://bbpress.org/forums/topic/bbpress-0831-released#post-13560</link>
<pubDate>Fri, 01 Feb 2008 16:20:02 +0000</pubDate>
<dc:creator>SessionX1</dc:creator>
<guid isPermaLink="false">13560@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Now it folds finally.&#60;br /&#62;
This was possible by the .htaccess. &#60;/p&#62;
&#60;p&#62;Now I wanted to install the Design, whatever is used here, but that is not correctly indicated. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.wp-portal.de/&#34; rel=&#34;nofollow&#34;&#62;http://www.wp-portal.de/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Why?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "bbPress 0.8.3.1 released"</title>
<link>http://bbpress.org/forums/topic/bbpress-0831-released#post-13555</link>
<pubDate>Fri, 01 Feb 2008 14:53:31 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13555@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;While this looks ugly, they're just PHP warnings.  PHP error messages and warnings should not be visible on a production webserver anyway.  They are there because of a problem with the bbPress code and the way it is interacting with your server, but they are not preventing you from going further.  If you suppress the PHP warnings (maybe you have access to your .htaccess file) you will be blissfully unaware of the warnings.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/php-error-messages?replies=16#post-13128&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/php-error-messages?replies=16#post-13128&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>SessionX1 on "bbPress 0.8.3.1 released"</title>
<link>http://bbpress.org/forums/topic/bbpress-0831-released#post-13541</link>
<pubDate>Fri, 01 Feb 2008 13:50:04 +0000</pubDate>
<dc:creator>SessionX1</dc:creator>
<guid isPermaLink="false">13541@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That I made now already fourth time and it come again and again the same error. So can't that be, what could still lie?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "bbPress 0.8.3.1 released"</title>
<link>http://bbpress.org/forums/topic/bbpress-0831-released#post-13538</link>
<pubDate>Fri, 01 Feb 2008 13:36:59 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">13538@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;See this post for a solution.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/php-error-messages?replies=12#post-13143&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/php-error-messages?replies=12#post-13143&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This was a problem before this version, but is fixed in the latest builds.
&#60;/p&#62;</description>
</item>
<item>
<title>SessionX1 on "bbPress 0.8.3.1 released"</title>
<link>http://bbpress.org/forums/topic/bbpress-0831-released#post-13531</link>
<pubDate>Fri, 01 Feb 2008 09:48:03 +0000</pubDate>
<dc:creator>SessionX1</dc:creator>
<guid isPermaLink="false">13531@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;bad Version, why too many bugs ?&#60;/p&#62;
&#60;p&#62;Look this : &#60;a href=&#34;http://www.wp-portal.de/bb-admin/install.php&#34; rel=&#34;nofollow&#34;&#62;http://www.wp-portal.de/bb-admin/install.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Sorry 4 my bad english.&#60;/p&#62;
&#60;p&#62;Greetings
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13442</link>
<pubDate>Mon, 28 Jan 2008 03:21:32 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13442@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;when that be applied in the pluggable.php file?
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13396</link>
<pubDate>Sat, 26 Jan 2008 00:59:39 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13396@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;not sure how to apply that code.. can you assist
&#60;/p&#62;</description>
</item>
<item>
<title>thomasklaiber on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13362</link>
<pubDate>Fri, 25 Jan 2008 10:43:46 +0000</pubDate>
<dc:creator>thomasklaiber</dc:creator>
<guid isPermaLink="false">13362@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The bbpress mail funcion is just something I can't really understand. When I tried to use it with my &#60;em&#62;favorite notification&#60;/em&#62; plugin I got some problems, so I decided to hardcode the mail-function into my plugin.&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
mail( $userdata-&#38;gt;user_email, bb_get_option('name') . ':' . __('Notification'),&#60;br /&#62;
   sprintf( $message, $topic-&#38;gt;topic_title, get_user_name($bb_current_user-&#38;gt;ID), get_topic_link($topic_id) ),&#60;br /&#62;
   'From: ' . bb_get_option('admin_email') 	                    );&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I just kept it simple there. Did someone of you try to hardcode the mailing into the registration function? Would be interesting to see if it works then?!
&#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-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 "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13353</link>
<pubDate>Thu, 24 Jan 2008 21:52:47 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13353@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I wish I could just have 1 login for both sides -- and be able to merge profile into one place to edit.  Sounds really complicated though.
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13352</link>
<pubDate>Thu, 24 Jan 2008 21:50:14 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13352@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have tried all different ways of entering email addresses. I am baffled. The only thing I can think is the following:&#60;/p&#62;
&#60;p&#62;bbpress resides in folder one up from Word press.  I am wondering if there is a file permission issue for that folder.  But again the odd thing is.. the favorites notification works just fine and it is in the same plugin folder as the plugin Sam had me upload.  I do not know.  I hope Sam may have more ideas.&#60;/p&#62;
&#60;p&#62;None of this makes sense.  It has to be a BBpress email php coding issue..  But why is it so different from wordpress and the bpress plugin &#34;favorites notification&#34;  that work fine.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13350</link>
<pubDate>Thu, 24 Jan 2008 19:34:03 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13350@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;One thing I always thought was interesting was that mail appears to be sent from &#60;a href=&#34;mailto:bbpress@yourdomain.com&#34;&#62;bbpress@yourdomain.com&#60;/a&#62;, whether or not that is a valid email.  So, if you responded to your password email or something, it would be sent to that bbpress@ address, which might be invalid, so it would bounce. &#60;/p&#62;
&#60;p&#62;I wonder if &#60;a href=&#34;mailto:bbpress@yourdomain.com&#34;&#62;bbpress@yourdomain.com&#60;/a&#62; has to be set up as a valid email account on the server, so if the SMTP server says &#34;let me make sure this is one of my users before I sent out email for him&#34; it will work.  Since you wouldn't normally have a &#60;a href=&#34;mailto:bbpress@yourdomain.com&#34;&#62;bbpress@yourdomain.com&#60;/a&#62; address already set up, maybe some MTAs don't like it and give up on the mail altogether.&#60;/p&#62;
&#60;p&#62;Why wouldn't the email just be sent from the admin email address since we're asked to enter it in config.php anyway?&#60;/p&#62;
&#60;p&#62;Any thoughts?
&#60;/p&#62;</description>
</item>
<item>
<title>rslater on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13343</link>
<pubDate>Thu, 24 Jan 2008 16:15:30 +0000</pubDate>
<dc:creator>rslater</dc:creator>
<guid isPermaLink="false">13343@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Still does not work..  Can you elaborate on the &#34;valid email&#34; and what exactly you mean..  May sound like a dumb question but I just want to make sure i am not crazy.  Which may be the case... :)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "User Registration"</title>
<link>http://bbpress.org/forums/topic/user-registration#post-13337</link>
<pubDate>Thu, 24 Jan 2008 01:50:45 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">13337@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Looks like it may be rejecting the mail due to the &#34;From&#34; email address being invalid. Try this code in a plugin and make sure your admin_email option is a valid email address:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
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))) {
		if (!$from = bb_get_option(&#38;#39;admin_email&#38;#39;))
			if ($uri_parsed = parse_url(bb_get_option(&#38;#39;uri&#38;#39;)))
				if ($uri_parsed[&#38;#39;host&#38;#39;])
					$from = &#38;#39;bbpress@&#38;#39; . trim(preg_replace(&#38;#39;/^www./i&#38;#39;, &#38;#39;&#38;#39;, $uri_parsed[&#38;#39;host&#38;#39;]));

		if ($from)
			$headers[] = &#38;#39;From: &#38;quot;&#38;#39; . bb_get_option(&#38;#39;name&#38;#39;) . &#38;#39;&#38;quot; &#38;lt;&#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>

</channel>
</rss>
