2008-11-16, 08:47 AM
(This post was last modified: 2008-11-16, 08:49 AM by Ryan Gordon.)
classixiii, do those SMTP errors occur when you are sending a thread or emailing a user?
If so, can you try this patch?
in both member.php and sendthread.php find
and replace with
If so, can you try this patch?
in both member.php and sendthread.php find
$from = "{$mybb->user['username']} <{$mybb->user['email']}>";
and replace with
if($mybb->settings['mail_handler'] == 'smtp')
{
$from = $mybb->user['email'];
}
else
{
$from = "{$mybb->user['username']} <{$mybb->user['email']}>";
}