The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Query to check project specific outgoing mailbox settings

Pranjal Shukla
Contributor
March 24, 2013

Some of our projects are configured with separate outgoing mail address than the default address. Wed have huge number of projects and prettty difficult to browse one by one to check the associations. Could any body of you suggest me a query to find it?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Henning Tietgens
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
March 24, 2013

You can use Script Runner plugin and this script to list all projects and the corresponding from email.

import com.atlassian.core.ofbiz.util.OFBizPropertyUtils
import com.atlassian.jira.project.ProjectKeys

pm = componentManager.projectManager
result = ''
pm.getProjectObjects().each {proj->
    result += proj.key + ": " + OFBizPropertyUtils.getPropertySet(proj.getGenericValue()).getString(ProjectKeys.EMAIL_SENDER) + "\n"
}
result

If it's null is the default from address.

Henning