SMTP Error 5.1.3 ошибка при отправке почты.

MantisBT forum for users who prefer to ask and answer questions in Russian.

Moderators: Developer, Contributor

Post Reply
levar
Posts: 3
Joined: 13 Jun 2015, 09:23

SMTP Error 5.1.3 ошибка при отправке почты.

Post by levar »

Доброго времени всем.
Помоги решить проблему. Долгое время мантис исправно работал и отправлял все уведомения по почте. Но в один прекрасый момент перестал. Сейчас в логах следующая ситуация:
2015-06-13 00:35 MSK mail_recipient Issue = #82, add Reporter = @U2
2015-06-13 00:35 MSK mail_recipient Issue = #82, add Handler = @U2
2015-06-13 00:35 MSK mail_recipient Issue = #82, add Note Author = @U2
2015-06-13 00:35 MSK mail_recipient Issue = #82, drop @U2 (own)
2015-06-13 00:35 MSK mail Processing e-mail queue (6 messages)
2015-06-13 00:35 MSK mail Sending message #2 queued on 2014-07-25 11:48 MSK
2015-06-13 00:35 MSK mail ERROR: Message could not be sent - Ошибка SMTP: данные не приняты.<p>Ошибка SMTP-сервера: 5.1.3 Bad recipient address syntax 1434144904-LWsQhaSAvc-Z4HWZMsJ
При этом тест настроек e-mail проходит успешно, письмо падает в почту.
Конфигурация:
Версия MantisBT 1.2.19
php_version 5.5.9-1ubuntu4.9
Конфиг мантиса:

Code: Select all

<?php
        $g_hostname = 'localhost';
        $g_db_type = 'mysql';
        $g_database_name = 'bugtracker';
        $g_db_username = 'user';
        $g_db_password = 'password';
         /**Language**/
        $g_default_language = 'russian';
        /**Email**/
$g_enable_email_notification = ON;
$g_phpMailer_method = 2;
$g_smtp_host = 'smtp.yandex.ru';
$g_smtp_username = 'mantis@domain.com';
$g_smtp_password = 'password';
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = '465';
$g_administrator_email = 'user@domain.com';
$g_webmaster_email = 'mantis@domain.com'; 
$g_from_email = 'mantis@domain.com';
$g_return_path_email = 'mantis@domain.com';
$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT | LOG_DATABASE;
$g_log_destination = 'file:/var/log/mantis/email.log';
$g_from_name = 'Mantis Bug Tracker';

/**LOGO**/
$g_logo_image = 'images/logo.png';

$g_bug_report_page_fields = array(
'category_id',
'view_state',
'handler',
'summary',
'description',
'attachments',
'due_date',
);
$g_bug_print_page_fields = array(
'id',
'project',
'date_submitted',
'last_updated',
'reporter',
'status',
'resolution',
'category_id',
'view_state',
'handler',
'summary',
'description',
'tags',
'attachments',
'due_date',
);

$g_bug_view_page_fields = array(
'id',
'project',
'category_id',
'view_state',
'date_submitted',
'last_updated',
'handler',
'status',
'resolution',
'summary',
'description',
'tags',
'attachments',
'due_date',
);
$g_bug_update_page_fields = array(
'id',
'project',
'category_id',
'view_state',
'date_submitted',
'last_updated',
'handler',
'status',
'resolution',
'summary',
'description',
'tags',
'attachments',
'due_date',
);
$g_bug_change_status_page_fields = array(
'id',
'project',
'category_id',
'view_state',
'date_submitted',
'last_updated',
'handler',
'status',
'resolution',
'summary',
'description',
'tags',
'attachments',
'due_date',
);
?>
Буду рад любой помощи,спасибо.
levar
Posts: 3
Joined: 13 Jun 2015, 09:23

Re: SMTP Error 5.1.3 ошибка при отправке почты.

Post by levar »

Ни у кого нет идей?Пробовал на новехонькой виртуалочке развернуть чистый мантис и таже самая история. Тест на отправку проходит,все остальное не отправляет. Что за магия?
levar
Posts: 3
Joined: 13 Jun 2015, 09:23

Re: SMTP Error 5.1.3 ошибка при отправке почты.

Post by levar »

Неужели у всех все работает?Кто нибудь ещк использует yandex в качестве smtp?
Kirill
Posts: 638
Joined: 25 Nov 2007, 08:05
Location: Kaliningrad, RF
Contact:

Re: SMTP Error 5.1.3 ошибка при отправке почты.

Post by Kirill »

Использую и работает.
Post Reply