Hi,
I’ve got the same problem, but with another host(Hosteurope).
I solved it after I’ve asked my hoster. When sending an Email from my host, I need to add a -f parameter to the sendmail function.
Doing so in BBPress you will need to add a valid (and known for the server) Email-adress in line 90 of your bbpress-root-folder/bb-includes/backpress/class.mailer.php file from
/**
* Sets the Sender email (Return-Path) of the message. If not empty,
* will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
* @var string
*/
var $Sender = '';
to
var $Sender = 'from@your-domain.com';
I hope this might help some of you
bb