How to Monitor Fisheye's Mail Queue
プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム。
この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。
*Fisheye および Crucible は除く
要約
The content on this page relates to platforms which are supported; however, the content is out of scope of our support offerings. Consequently, Atlassian cannot guarantee support. Please be aware that this material is provided for your information only and you may use it at your own risk.
If the mail queue gets backed up frequently it can be useful to monitor the mail queue.
ソリューション
Use the following database query to see all the queued emails:
SELECT cru_recipient.cru_email AS status, cru_create_date, cru_note, cru_user_name
FROM cru_recipient
JOIN cru_notification ON cru_recipient.cru_notification_id = cru_notification.cru_notification_id
JOIN cru_user ON cru_recipient.cru_user = cru_user.cru_user_id
ORDER BY cru_create_date DESC;この内容はお役に立ちましたか?