<?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: register</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: register</description>
<language>en</language>
<pubDate>Fri, 04 Jul 2008 21:24:24 +0000</pubDate>

<item>
<title>Bo Fiddlesticks on "(yet another) integration bug, no Role set on registration"</title>
<link>http://bbpress.org/forums/topic/yet-another-integration-bug-no-role-set-on-registration#post-16718</link>
<pubDate>Thu, 12 Jun 2008 10:17:49 +0000</pubDate>
<dc:creator>Bo Fiddlesticks</dc:creator>
<guid isPermaLink="false">16718@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Unfortunately, Detective's solution doesn't work with the latest versions. I'm experiencing the same issues (integrated scenario):&#60;br /&#62;
User registers on bbpress and logs in there&#60;br /&#62;
User can acces the WP Site Admin section, but it says: Welcome, . (a space instead of the user name)&#60;br /&#62;
User comments are registered as 'Anonymous'&#60;/p&#62;
&#60;p&#62;I noticed the only way to fix this is to go to WP user management panel, editing and saving the user.&#60;br /&#62;
So the user has to be actively (and manually :\ ) updated to have his name listed under his comments.&#60;/p&#62;
&#60;p&#62;I haven't found any way to avoid this, but if anyone can I'd be much abliged!
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16640</link>
<pubDate>Sat, 07 Jun 2008 06:08:27 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16640@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;solved!!!&#60;/p&#62;
&#60;p&#62;add a previous line fetching the posted value:&#60;br /&#62;
$temp = $_POST['tpassword'];&#60;/p&#62;
&#60;p&#62;and then use:&#60;/p&#62;
&#60;p&#62;bb_update_user_password( $user_id, $temp ); &#60;/p&#62;
&#60;p&#62;That is it, you have your system where you can let your users set their own passwords. Any security threads?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;mailto:cordoval@gmail.com&#34;&#62;cordoval@gmail.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16639</link>
<pubDate>Sat, 07 Jun 2008 05:56:33 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16639@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;0. done&#60;br /&#62;
1. so far bb_update_usermeta -&#38;gt; bb_update_meta-&#38;gt; and now in lines 38 and 39 of register.php on the root we add a line below 38:					bb_update_usermeta( $user_id, $key, $$key ); /*this is where the user gets registered */&#60;/p&#62;
&#60;p&#62;As follows:					bb_update_user_password( $user_id, &#34;default&#34; ); /* I am assigning here the new password by default which is &#34;default&#34;&#60;/p&#62;
&#60;p&#62;This works! So now I just need to get the string from the custom field and assign it here! Can anyone more experienced than me help me?
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16638</link>
<pubDate>Sat, 07 Jun 2008 05:06:42 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16638@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have found the trac website with the ticket for your records:&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/779&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/779&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Now I am thinking that we can achieve this easily:&#60;br /&#62;
0. create custom field for password (at first do not validate with an extra field)&#60;br /&#62;
1. get the registration function to create the account with the given username&#60;br /&#62;
2. get the password be follow through the function and pass it to a second call&#60;br /&#62;
3. the second call will really call the change-password function and will get the passed user defined password to the change-password.&#60;br /&#62;
4. the end.&#60;/p&#62;
&#60;p&#62;Sounds simple but let's see where our code is.
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16619</link>
<pubDate>Fri, 06 Jun 2008 05:21:25 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16619@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This sounds a past issue, yet I would like to add fuel to this thread. Please make me aware if there is already a plug in for this feature. I saw a note of _ck_ requesting this enhancement but I doubt it has gone through over these months yet.&#60;/p&#62;
&#60;p&#62;To txrediakov: I want to enable the user to choose their password, not because of email anymore but because I believe we cannot just deny our users this capability. It is expected in any reasonable website that the user can type her own password.&#60;/p&#62;
&#60;p&#62;To chrishajer: Good information. Now thinking logically: If one can display the password in a window returned after registration I think it could be possible to perform one additional step in the php code to take a password fetched from a custom field in the registration page, then take the bbpress generated password and replace it with the new value.&#60;br /&#62;
    However, there is a slight problem. The user can only change her password after she is logged in. Granting the new user access to the account to post right away after registration may pose some kind of security thread to the system and to the accounts of all users. So how could we go about doing this without compromising the security of the system?&#60;/p&#62;
&#60;p&#62;Please you are welcome to contact me as I need to work and solve this issue. &#60;/p&#62;
&#60;p&#62;Encouragements,
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Mail Sending problem with mail() function"</title>
<link>http://bbpress.org/forums/topic/mail-senging-problem-with-mail-function#post-15914</link>
<pubDate>Thu, 01 May 2008 14:42:25 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15914@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Those ini_set() calls could go in your bb-config.php as well and should work just the same.&#60;/p&#62;
&#60;p&#62;Having said that, I think this hack will only work on Windows Servers running IIS. But I'm not 100% sure about that.
&#60;/p&#62;</description>
</item>
<item>
<title>DJP on "Mail Sending problem with mail() function"</title>
<link>http://bbpress.org/forums/topic/mail-senging-problem-with-mail-function#post-15889</link>
<pubDate>Wed, 30 Apr 2008 13:05:07 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15889@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@amit_online&#60;/p&#62;
&#60;p&#62;I will try this on my installation instead of the PEAR workaround &#38;#38; let you know if it works.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>amit_online on "Mail Sending problem with mail() function"</title>
<link>http://bbpress.org/forums/topic/mail-senging-problem-with-mail-function#post-15883</link>
<pubDate>Wed, 30 Apr 2008 07:55:59 +0000</pubDate>
<dc:creator>amit_online</dc:creator>
<guid isPermaLink="false">15883@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;After experiencing the initial problem of a signup confirmation mail not going out, and going through the various posts on that topic, I finally found a fix without having to use a plugin or use pear functions.&#60;/p&#62;
&#60;p&#62;In the file /bb-includes/pluggable.php add the following lines at the top:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;ini_set(&#38;quot;SMTP&#38;quot;,&#38;quot;mail.YourDomain.com&#38;quot;); //IP or server name for smtp server
ini_set(&#38;quot;smtp_port&#38;quot;,&#38;quot;25&#38;quot;);
ini_set(&#38;#39;sendmail_from&#38;#39;, &#38;#39;ValidEmailAccount@YourDomain.com&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This worked in my case. I hope this solves other people's problems too.
&#60;/p&#62;</description>
</item>
<item>
<title>DJP on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15659</link>
<pubDate>Tue, 22 Apr 2008 13:41:30 +0000</pubDate>
<dc:creator>DJP</dc:creator>
<guid isPermaLink="false">15659@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>
<item>
<title>_ck_ on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15575</link>
<pubDate>Sun, 20 Apr 2008 18:38:19 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15575@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This issue in my plugin has now been fixed, be sure to upgrade to 0.0.2&#60;/p&#62;
&#60;p&#62;Sorry for the problem, it was because the main email address changed in 0.9 to &#34;from_email&#34;  instead of &#34;admin_email&#34; and I was not aware of the change.
&#60;/p&#62;</description>
</item>
<item>
<title>RyanNutt on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15541</link>
<pubDate>Sat, 19 Apr 2008 11:09:39 +0000</pubDate>
<dc:creator>RyanNutt</dc:creator>
<guid isPermaLink="false">15541@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You're right, it's the &#60;a href=&#34;http://bbpress.org/plugins/topic/new-user-notification/&#34;&#62;new user notification&#60;/a&#62; plugin that I had forgotten about downloading.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15536</link>
<pubDate>Sat, 19 Apr 2008 05:50:15 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15536@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It must be a plugin, that feature is not part of core.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15532</link>
<pubDate>Sat, 19 Apr 2008 05:00:54 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15532@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hmmm: I don't get one of those messages as keymaster in my forum.  I am still running an older version.  Is that notification built in to a specific version or is that a plugin that notifies you of new registrations?  Can you post the text of one of those messages please?
&#60;/p&#62;</description>
</item>
<item>
<title>RyanNutt on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15507</link>
<pubDate>Fri, 18 Apr 2008 10:07:14 +0000</pubDate>
<dc:creator>RyanNutt</dc:creator>
<guid isPermaLink="false">15507@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's not the email to the new user that's messed up, it's the email to me telling me that a new user signed up.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15501</link>
<pubDate>Fri, 18 Apr 2008 07:08:47 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15501@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just registered at your forum, and I received a well formed email.  I have no idea what you're talking about.  Did you receive an email regarding my registration at the same time?&#60;/p&#62;
&#60;p&#62;If you are receiving these bounce messages, how would anyone ever get their password to log in?&#60;/p&#62;
&#60;p&#62;The email was from fbw (at) forums blogs wikis (dot) com (no spaces, the From: was well-formed.)&#60;/p&#62;
&#60;p&#62;/confused
&#60;/p&#62;</description>
</item>
<item>
<title>RyanNutt on "New user registration email missing recipient email"</title>
<link>http://bbpress.org/forums/topic/new-user-registration-email-missing-recipient-email#post-15492</link>
<pubDate>Fri, 18 Apr 2008 00:37:10 +0000</pubDate>
<dc:creator>RyanNutt</dc:creator>
<guid isPermaLink="false">15492@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;My shiny new bbPress forum is trying to send the messages to me when a new member signs up without anything in the To: line.  They don't send because of a missing recipient address, which means they still wind up in my inbox through a different account but I'd like them to send correctly if possible.  &#60;/p&#62;
&#60;p&#62;I assume I'm just missing a setting somewhere.  Where do I set the email address that these messages should be sent to?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Blocking registrations by email"</title>
<link>http://bbpress.org/forums/topic/blocking-registrations-by-email#post-15481</link>
<pubDate>Thu, 17 Apr 2008 16:43:10 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15481@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ah, in that case all you need to put there is &#60;code&#62;mail.ru&#60;/code&#62; without the asterisk or leading dot.
&#60;/p&#62;</description>
</item>
<item>
<title>RyanNutt on "Blocking registrations by email"</title>
<link>http://bbpress.org/forums/topic/blocking-registrations-by-email#post-15450</link>
<pubDate>Thu, 17 Apr 2008 00:29:05 +0000</pubDate>
<dc:creator>RyanNutt</dc:creator>
<guid isPermaLink="false">15450@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;By adding the period wouldn't that only block stuff from @123.mail.ru, @whateverelse.mail.ru, etc. and not @mail.ru?  It's the @mail.ru that seems to be the problem and not subdomains of mail.ru.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Blocking registrations by email"</title>
<link>http://bbpress.org/forums/topic/blocking-registrations-by-email#post-15414</link>
<pubDate>Wed, 16 Apr 2008 03:06:40 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15414@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You should make that:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;*.mail.ru&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>RyanNutt on "Blocking registrations by email"</title>
<link>http://bbpress.org/forums/topic/blocking-registrations-by-email#post-15364</link>
<pubDate>Mon, 14 Apr 2008 14:01:29 +0000</pubDate>
<dc:creator>RyanNutt</dc:creator>
<guid isPermaLink="false">15364@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Perfect.  Thank you.&#60;/p&#62;
&#60;p&#62;Just to make sure I've got it setup right.  I've checked the Enable checkbox on top and added *mail.ru in the blacklist box.  Whitelist box is empty.  Sound correct?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Blocking registrations by email"</title>
<link>http://bbpress.org/forums/topic/blocking-registrations-by-email#post-15330</link>
<pubDate>Sun, 13 Apr 2008 16:51:24 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15330@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is the plugin to do exactly what you want:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/restrict-registration-for-bbpress/#post-173&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/restrict-registration-for-bbpress/#post-173&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You might also want to add my &#34;Human Text&#34; plugin to help stop bot (automated) registrations:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/human-test&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/human-test&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>RyanNutt on "Blocking registrations by email"</title>
<link>http://bbpress.org/forums/topic/blocking-registrations-by-email#post-15329</link>
<pubDate>Sun, 13 Apr 2008 14:59:32 +0000</pubDate>
<dc:creator>RyanNutt</dc:creator>
<guid isPermaLink="false">15329@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The first two user registrations I've had on my new forum are both using @mail.ru email addresses.  Experience with other forums tells me these are probably spam registrations.  On the SMF forums I admin I block @mail.ru email addresses from being able to register at all.  Is there a way to do this in bbPress?  Maybe have them default to Inactive or Blocked depending on the email address used?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "signup/registration captcha?"</title>
<link>http://bbpress.org/forums/topic/signupregistration-captcha#post-14119</link>
<pubDate>Wed, 27 Feb 2008 00:29:17 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14119@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;_ck_ can you edit that linked page to redirect to the new, always current page?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "signup/registration captcha?"</title>
<link>http://bbpress.org/forums/topic/signupregistration-captcha#post-14096</link>
<pubDate>Tue, 26 Feb 2008 18:46:53 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">14096@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Be sure to get the newest version here and not the above download:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/human-test/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/human-test/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "signup/registration captcha?"</title>
<link>http://bbpress.org/forums/topic/signupregistration-captcha#post-13429</link>
<pubDate>Sun, 27 Jan 2008 11:13:50 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">13429@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Okay I have created a new plugin &#34;Human Test&#34; which will do some tests during registration to try to slow down the bots.&#60;/p&#62;
&#60;p&#62;Eventually will do more tricky things like captcha and variable math but for version 0.01 it simply asks what the answer to 2+2 is.&#60;/p&#62;
&#60;p&#62;I need to know if this still works with older versions and weird themes:&#60;br /&#62;
&#60;a href=&#34;http://ckon.wordpress.com/files/2008/01/human-test.txt&#34; rel=&#34;nofollow&#34;&#62;http://ckon.wordpress.com/files/2008/01/human-test.txt&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Awaiting inclusion in the bbPress plugin depository for newer versions.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "signup/registration captcha?"</title>
<link>http://bbpress.org/forums/topic/signupregistration-captcha#post-13428</link>
<pubDate>Sun, 27 Jan 2008 08:29:41 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">13428@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just noticed that over the past few months there are at least 50 fake signups on bbShowcase (out of 250).&#60;/p&#62;
&#60;p&#62;Has anyone made a captcha or turing test plugin for the bbPress signup yet? I can't seem to find one.
&#60;/p&#62;</description>
</item>
<item>
<title>bedbugger on "(yet another) integration bug, no Role set on registration"</title>
<link>http://bbpress.org/forums/topic/yet-another-integration-bug-no-role-set-on-registration#post-12847</link>
<pubDate>Sat, 22 Dec 2007 18:07:45 +0000</pubDate>
<dc:creator>bedbugger</dc:creator>
<guid isPermaLink="false">12847@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;kboan23,&#60;br /&#62;
Even if you manually fix the role of users registered in bbpress to &#34;subscriber&#34; the display name field is still blank.  So unless I am missing something, you do need to fix this problem.  Otherwise, bbpress registrants become subscribers login at wordpress and their username shows as Anonymous.
&#60;/p&#62;</description>
</item>
<item>
<title>AphelionZ on "Combined Register + Post"</title>
<link>http://bbpress.org/forums/topic/combined-register-post#post-12755</link>
<pubDate>Tue, 18 Dec 2007 14:14:20 +0000</pubDate>
<dc:creator>AphelionZ</dc:creator>
<guid isPermaLink="false">12755@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'd like to see this functionality too!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-11114</link>
<pubDate>Wed, 26 Sep 2007 12:55:37 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">11114@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There was talk a while ago of servers that would not send email, so there was a way to display the password:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/users-dont-receive-password-after-registration?replies=8#post-349&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/users-dont-receive-password-after-registration?replies=8#post-349&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;A lot of that discussion was specifically to get around not emailing the password, it displays it instead.  It's not exactly what you need, but maybe the approach could be the same.  You could still require username and email, but then their password would be displayed instead of emailed.&#60;/p&#62;
&#60;p&#62;I think also maybe you underestimate your users.  The password arrives via email in less than a minute usually.  If they can't hang around for that, why would they hang around on a forum at all?&#60;/p&#62;
&#60;p&#62;HTH
&#60;/p&#62;</description>
</item>
<item>
<title>txerdiakov on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-11113</link>
<pubDate>Wed, 26 Sep 2007 11:16:00 +0000</pubDate>
<dc:creator>txerdiakov</dc:creator>
<guid isPermaLink="false">11113@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello&#60;br /&#62;
Somebody knows if there is a plugin or is going to be added in the next version a system to simplificate the registration process?&#60;br /&#62;
It would be great one of this things:&#60;br /&#62;
1- anonymous post, just put my name&#60;br /&#62;
2- i have to register, but I can choose my password and I don't need to wait for a registration mail.&#60;br /&#62;
The main problem I have is that my users are lazy, so if I make them register and wait for a password they are going away...&#60;br /&#62;
Thanks for your comments.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
