Ticket #592: post-submission-bbpress.txt

File post-submission-bbpress.txt, 715 bytes (added by chrishajer, 5 years ago)
Line 
1When registering on a bbPress forum, this is displayed after you submit your registration:
2
3<pre>Make sure to whitelist our domain (http://www.mywebsite.com) so the confirmation email doesn't get caught by any filters.</pre>
4
5That's not really how whitelists work. Normally, you whitelist a domain or an address, so wouldn't it be better to say this in <a href="http://trac.bbpress.org/browser/trunk/bb-templates/kakumei/register.php#L11">register.php on line 11</a>:
6
7`<?php printf(__("A password will be mailed to the email address you provide. Make sure to whitelist our email address (%s) so the confirmation email doesn't get caught by any  filters."), bb_get_option( 'admin_email' )) ?>
8`
9Make sense?