Query to check project specific outgoing mailbox settings

Pranjal Shukla 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

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 Leaders.
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

Suggest an answer

Log in or Sign up to answer