Hi
Can anyone tell me how to find the project email address in the JIRA database (in the UI it is the one found in the "Notifications" section on the "Summary" page for a project).
Thanks
Vikki
Vikki,
The table is [SCHEMANAME].propertystring
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
select ps.propertyvalue as 'notificationEmail', p.pkey
from propertyentry pe, propertystring ps, project p
where pe.property_key='jira.project.email.sender'
and pe.ID = ps.ID
and pe.ENTITY_ID = p.ID
and ps.propertyvalue is not NULL
;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found all projects with a From address set using
select * from propertyentry where property_key='jira.project.email.sender';
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.