Ошибка Smtp

Ребят весь интернет перерыл помогайте не могу понять на стороне сборки ошибка или на стороне хостинга....

// Email
$bb_cfg['emailer'] = [
'enabled' => true,
'sendmail_command' => '/usr/sbin/sendmail -bs',
'smtp' => [
'enabled' => true, // send email via external SMTP server
'host' => 'smtp.majordomo.ru', // SMTP server host
'port' => 465, // SMTP server port
'username' => '[email protected]', // SMTP username (if server requires it)
'password' => 'Bnmjkllkjmnh', // SMTP password (if server requires it)
'ssl_type' => 'ssl', // SMTP ssl type (ssl or tls)
],
];
$bb_cfg['extended_email_validation'] = true; // DNS & RFC checks for entered email addresses

$bb_cfg['board_email'] = "noreply@$domain_name"; // admin email address
$bb_cfg['board_email_form'] = false; // can users send email to each other via board
$bb_cfg['board_email_sig'] = ''; // this text will be attached to all emails the board sends
$bb_cfg['board_email_sitename'] = $domain_name; // sitename used in all emails header

$bb_cfg['topic_notify_enabled'] = true; // Send emails to users if subscribed to the topic
$bb_cfg['pm_notify_enabled'] = true; // Send emails to users if there's a new message in inbox
$bb_cfg['group_send_email'] = true; // Send emails to users if user was invited/added to a group
$bb_cfg['email_change_disabled'] = false; // Allow changing emails for users
$bb_cfg['show_email_visibility_settings'] = true; // Allow changing privacy status of profile for users (e.g. last time seen)

$bb_cfg['bounce_email'] = "bounce@$domain_name"; // bounce email address
$bb_cfg['tech_admin_email'] = "admin@$domain_name"; // email for sending error reports
$bb_cfg['abuse_email'] = "abuse@$domain_name"; // abuse email (e.g. DMCA)
$bb_cfg['adv_email'] = "adv@$domain_name"; // advertisement email

Сама ошибка
Failed sending email: Expected response code "250" but got code "550", with message "550 Mail from [email protected] is not allowed.".
 
Решено) тех поддержка хостинга помогла ошибка в скрипте

Измените данные настройки
$bb_cfg['bounce_email'] = "noreply@$domain_name"; // bounce email address

$bb_cfg['tech_admin_email'] = "admin@$domain_name"; // email for sending error reports

$bb_cfg['abuse_email'] = "abuse@$domain_name"; // abuse email (e.g. DMCA)

$bb_cfg['adv_email'] = "adv@$domain_name"; // advertisement email



На noreply, как в $bb_cfg['bounce_email'].
Сотрудник поддержки • 13.08.2025 08:02:04
 
Back
Top