Problem with the default "do not reply" email address
-
With the recent bbPress update, the way notification is sent is changed. Earlier individual emails are sent to each people, but now only one email is sent with all the email address in bcc. I guess this is done to prevent email bottleneck. But this seems to have caused a issue in my setup.
I use wpmandrill to send emails through the mandrill service. With the new change, the to and from address is changed to a default “do not reply” email address that is calculated using the current domain name. The code is present in the
bbpress/includes/common/functions.php
$do_not_reply = '<noreply@' . ltrim( get_home_url(), '^(http|https)://' ) . '>';
So it becomes <nobody@domain.com>
When this address is used as “to” address, the mandrill service thinks that it is an invalid email address because of the angle brackets.
I went through the code, but there is no filter to change the
$do_not_reply
variable.
- You must be logged in to reply to this topic.