<?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: bb_mail</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: bb_mail</description>
<language>en</language>
<pubDate>Thu, 08 Jan 2009 23:54:50 +0000</pubDate>

<item>
<title>iservers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21907</link>
<pubDate>Thu, 18 Dec 2008 01:10:36 +0000</pubDate>
<dc:creator>iservers</dc:creator>
<guid isPermaLink="false">21907@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes.  What was I thinking?!? Unlike php.ini, the value can be specified in an optional bbPress configuration field (visible if SMTP is in use?) and set from a script, handling shared hosting environments as well.&#60;/p&#62;
&#60;p&#62;Elegant solution. No plugin required.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21831</link>
<pubDate>Wed, 17 Dec 2008 04:25:59 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">21831@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;OK, so should we manually set &#34;sendmail_from&#34;...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;ini_set( &#38;#39;sendmail_from&#38;#39;, &#38;#39;me@example.com&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Which only affects Windows servers anyway I believe.
&#60;/p&#62;</description>
</item>
<item>
<title>iservers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21785</link>
<pubDate>Tue, 16 Dec 2008 20:16:54 +0000</pubDate>
<dc:creator>iservers</dc:creator>
<guid isPermaLink="false">21785@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;1.0-alpha has the same issue, despite the heroic attempts made to scrub the mail headers. I would have done this sooner but I tend to avoid alphas, especially when I am new to a system.&#60;/p&#62;
&#60;p&#62;Let me try to summarize again, hopefully more clearly, for future readers. The PHP mail() function (in Windows, and without 'sendmail_from' being set in php.ini) overloads the meaning of the 'From:' header argument to include the SMTP 'MAIL FROM:' command value (the one sent over the socket to the SMTP server) in addition to the normal meaning of the header: the email message body 'From:' header (the one that most people think of -- the one displayed in the headers of messages in your email client that frequently includes a textual name as well as an email address).&#60;/p&#62;
&#60;p&#62;Not only is the nature of this issue obscure (two meanings for seemingly the same header), but it is further muddied by the behaviour of PHP mail() on different platforms (Windows and non-Windows) and within Windows itself (with and without 'sendmail_from' being set in php.ini). The obscure and incomplete Note in the PHP mail() documentation does not help matters either.&#60;/p&#62;
&#60;p&#62;So, without either PHP mail() changing (seems unlikely as this issue has existed for years) or without specific knowledge of Windows being added to clients (cough), the solutions are: 1) if PHP is under your control, set the 'sendmail_from' variable (server-wide) in php.ini (and it will be used as the value for the SMTP 'MAIL FROM:' command), or 2) if the client supports SMTP directly (bbPress does so with a plugin), use it, specifying two values for the 'From' header (the SMTP value must be a simple email address such as &#34;me@example.com&#34; while the other value may include a textual name and an email address,  such as &#34;Myself &#38;lt;me@example.com&#38;gt;&#34;.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21761</link>
<pubDate>Tue, 16 Dec 2008 14:35:25 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">21761@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@iservers&#60;/p&#62;
&#60;p&#62;Well, that's different... :)&#60;/p&#62;
&#60;p&#62;But I just realised you are using bbPress 0.9 - the bb_mail() function has been replaced in 1.0-alpha with one more like wp_mail() in WordPress.&#60;/p&#62;
&#60;p&#62;It was replaced in part because people had problems sending from Windows environments. You have probably just pinpointed the cause of that. Just a few months too late unfortunately!&#60;/p&#62;
&#60;p&#62;For now I would just hack the core of 0.9 if I were you - it is unlikely to see any more updates. The replacement function in 1.0 should take care of this, although I would appreciate it if you could test 1.0-alpha for the same problem if you have some time.
&#60;/p&#62;</description>
</item>
<item>
<title>iservers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21726</link>
<pubDate>Mon, 15 Dec 2008 20:40:03 +0000</pubDate>
<dc:creator>iservers</dc:creator>
<guid isPermaLink="false">21726@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I see. So the preferred solution is to route anyone who wishes to use SMTP with bbPress, and is not happy with the default PHP behaviour, to use the SMTP plugin. Fair enough.&#60;/p&#62;
&#60;p&#62;There is another solution for Windows SMTP systems for those who control PHP; live with setting 'sendmail_from' server-wide in php.ini. This overrides the value passed to the mail() function 'From:' header argument for use with the SMTP 'MAIL FROM:' command (where the problem lies), but retains that value for use with the mail message body 'From:' header (where a complete textual name may be used).&#60;/p&#62;
&#60;p&#62;BTW, the reason that the (SMTP) MTA on Windows rejects the email address is not due to the MTA, but due to PHP on Windows:&#60;br /&#62;
&#60;a href=&#34;http://www.php.net/manual/en/function.mail.php&#34; rel=&#34;nofollow&#34;&#62;http://www.php.net/manual/en/function.mail.php&#60;/a&#62;&#60;br /&#62;
A long-standing discussion is here:&#60;br /&#62;
&#60;a href=&#34;http://bugs.php.net/bug.php?id=28038&#34; rel=&#34;nofollow&#34;&#62;http://bugs.php.net/bug.php?id=28038&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The current value for the PHP mail() function 'From:' header (&#34;User name&#34; &#38;lt;uname@domain.com&#38;gt;&#34;) is an RFC2822 compliant format suitable for parsing by a library (like PHP mail()) which *should* generate separate strings for SMTP (the 'MAIL FROM:' command, which must be RFC2821 compliant)  and the message body (the 'From:' header field which can be RFC2822 compliant). RFC2821 format (user@domain.com or &#38;lt;user@domain.com&#38;gt;) differs from RFC2822 format. PHP mail() on Windows does not do this translation.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21690</link>
<pubDate>Mon, 15 Dec 2008 03:23:31 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">21690@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;PHP mail() only uses SMTP when PHP has been directed to use an MTA by default like in your case. There are plenty of situations where this isn't the case, like on a lot of shared hosting services. In these cases the only way to send mail is to programmatically connect to an SMTP server. This is possible in 1.0-alpha versions using the plugin that chrishajer pointed out.&#60;/p&#62;
&#60;p&#62;I wish it was as easy as changing that one line, believe me. Also, if your MTA is not accepting that very standard form of email address then it is really a config issue at the MTA. There is no reason it should be rejecting an RFC compliant email address like that one.
&#60;/p&#62;</description>
</item>
<item>
<title>iservers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21677</link>
<pubDate>Sun, 14 Dec 2008 22:47:34 +0000</pubDate>
<dc:creator>iservers</dc:creator>
<guid isPermaLink="false">21677@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was not referring to me modifying the core, but rather suggesting that the developers modify it for a future release of bbPress.&#60;/p&#62;
&#60;p&#62;SMTP is a major mail API. It can be handled transparently by bbPress with the existing underlying PHP support of the 'mail()' function. Seems like a one line (and transparent to existing systems) change in bbPress would be preferable to requiring bbPress admins to discover the issue, debug it, and then find and install a plugin. It would have also prevented me (and judging from the forum topics, others) from spending our (and your) time on the issue as well. Perhaps I am missing something about the development and distribution of bbPress, but using a plugin for a 1 line change is putting a sledgehammer to a tack. Especially since a system presumably built for *nix systems goes into a Windows environment (and rather an unusual one at that; IIS being generally preferred to Apache in that world) rather well. Just my 2c worth.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21569</link>
<pubDate>Sat, 13 Dec 2008 03:16:43 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">21569@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Re-reading your initial post, I recall this was mentioned in the forums here (at least) once before.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/email-wont-send-from-anyhting&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/email-wont-send-from-anyhting&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/user-registration&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/user-registration&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21568</link>
<pubDate>Sat, 13 Dec 2008 03:12:59 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">21568@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The only concern I have with modifying a core file is that the modification might be forgotten about, then when you upgrade (3 months, 6 months, a year or more later), something stops working and you're left wondering why.  I know you would never have that trouble, but I would caution anyone else from modifying core files and stick to using plugins to override functions that appear in pluggable.php.  Upgrades are so much easier when you don't need to keep track of what you modified in the core.&#60;/p&#62;
&#60;p&#62;Thanks for the Windows feedback in any case.
&#60;/p&#62;</description>
</item>
<item>
<title>iservers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21567</link>
<pubDate>Sat, 13 Dec 2008 02:40:28 +0000</pubDate>
<dc:creator>iservers</dc:creator>
<guid isPermaLink="false">21567@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well, I suppose that would solve the problem, but 'bb_mail()' already calls PHP 'mail()' which transparently handles SMTP. No plugin required.&#60;/p&#62;
&#60;p&#62;Yes, I know this requires a change to the core, but it is trivial and transparent.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21564</link>
<pubDate>Sat, 13 Dec 2008 02:28:16 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">21564@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Good feedback on that system.&#60;/p&#62;
&#60;p&#62;Better than modifying a core file (which won't survive an upgrade) is to use a plugin that allows you to use an SMTP server:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/smtp-mailer-for-bbpress/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/smtp-mailer-for-bbpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There are also threads in the forum about using Swift Mailer, IIRC.
&#60;/p&#62;</description>
</item>
<item>
<title>iservers on "Windows (Apache2/PHP/5.2.6/MySQL5.1.30)"</title>
<link>http://bbpress.org/forums/topic/windows-apache2php526mysql5130#post-21563</link>
<pubDate>Sat, 13 Dec 2008 02:25:46 +0000</pubDate>
<dc:creator>iservers</dc:creator>
<guid isPermaLink="false">21563@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just installed bbPress on a Windows XP system without incident.&#60;br /&#62;
Went in very easily.&#60;/p&#62;
&#60;p&#62;However, the PHP 'mail()' function on Windows uses an MTA.&#60;br /&#62;
That is, it communicates directly with an SMTP server rather than using any intervening software.&#60;br /&#62;
This means that the 'From:' header format must be very simple:&#60;br /&#62;
'From: &#60;a href=&#34;mailto:user@domain'&#34;&#62;user@domain'&#60;/a&#62;&#60;br /&#62;
instead of:&#60;br /&#62;
'From: &#34;Name of bbPress system&#34; &#38;lt;user@domain&#38;gt;'&#60;/p&#62;
&#60;p&#62;Otherwise, the SMTP server returns an error and does not send a message.&#60;/p&#62;
&#60;p&#62;An easy change can be made to bb-includes/pluggable.php::bb_Mail().&#60;br /&#62;
Change:&#60;br /&#62;
$headers[] = 'From: &#34;' . bb_get_option('name') . '&#34; &#38;lt;' . $from . '&#38;gt;';&#60;br /&#62;
to:&#60;br /&#62;
$headers[] = 'From: '. $from;&#60;/p&#62;
&#60;p&#62;The change will work with all systems or it can be placed under a&#60;br /&#62;
Windows-specific switch.
&#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>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 "I don't get second PW reset email in Hotmail"</title>
<link>http://bbpress.org/forums/topic/i-dont-get-second-pw-reset-email-in-hotmail#post-13358</link>
<pubDate>Fri, 25 Jan 2008 02:30:10 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13358@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Good question.  I'm inclined to say it's hotmail right off the bat, since they make it through to gmail, but maybe it's something that bbPress does with the email that hotmail finds objectionable.&#60;/p&#62;
&#60;p&#62;Who does the email arrive from, at gmail  (and the first time at hotmail for that matter), and if the mail were rejected, where would the bounced message go?  In my installation, emails appear to come from &#60;a href=&#34;mailto:bbpress@domain.com&#34;&#62;bbpress@domain.com&#60;/a&#62; - but that email doesn't exist, so any mail that fails to get delivered is just gone forever.  If your email comes from a real email address, is that address getting rejection emails from hotmail?
&#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>intellivision on "I don't get second PW reset email in Hotmail"</title>
<link>http://bbpress.org/forums/topic/i-dont-get-second-pw-reset-email-in-hotmail#post-13354</link>
<pubDate>Thu, 24 Jan 2008 22:38:44 +0000</pubDate>
<dc:creator>intellivision</dc:creator>
<guid isPermaLink="false">13354@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I get the first:&#60;/p&#62;
&#60;p&#62;&#34;If you wanted to reset your password, you may do so by visiting the following address:&#60;br /&#62;
&#60;a href=&#34;http://appleswitcher.com/wp/forum/bb-reset-password.php?key=4d8981628df36c3&#34; rel=&#34;nofollow&#34;&#62;http://appleswitcher.com/wp/forum/bb-reset-password.php?key=4d8981628df36c3&#60;/a&#62;&#60;br /&#62;
If you don't want to reset your password, just ignore this email. Thanks!&#34;&#60;/p&#62;
&#60;p&#62;Click that link which takes me to my page:&#60;/p&#62;
&#60;p&#62;&#34;Password Reset&#60;br /&#62;
Your password has been reset and a new one has been mailed to you.&#34;&#60;/p&#62;
&#60;p&#62;But the email never gets to my account, not even in Junk. Gmail *does not have this problem.* I just checked. It's just Hotmail. Don't know if it's &#34;them&#34; or bbPress.
&#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>
<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>

</channel>
</rss>
