Retrieve user email type preferences from the database
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
Server* 製品のサポートは 2024 年 2 月 15 日をもって終了します。Server 製品を利用している場合は、Atlassian Server のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
目的
While you can set the default email type globally in Jira, users have the ability to override this setting within their own preferences. Should you need to retrieve a list of how each user has configured this setting, you can do so via the following SQL example.
ソリューション
重要な注意事項
This query only returns users who have explicitly set an email type preference. If a user is not returned, they are inheriting the default global value.
select
au.lower_user_name
,ps.propertyvalue
from app_user au
join propertyentry pe
on au.id = pe.entity_id
and pe.entity_name = 'ApplicationUser'
and pe.property_key = 'user.notifications.mimetype'
join propertystring ps
on pe.id = ps.id;