Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Fire Custom Email when User is:

jared m September 8, 2015

HI,

(disclosure:  I'm very new to scripting, I took a C++ class about 8 years ago)

 

I'm trying to fire a custom email via scriptrunner when the reporter is "Remote User".  What script would i use for this?

 

I cobbled together a condition script :

import com.atlassian.jira.component.ComponentAccessor

def userManager = ComponentAccessor.getUserManager()
issue.reporter == "Remote User"

 

But it always resolves as false, so i must be doing something very wrong.

 

Thank you

3 answers

1 vote
JamieA
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.
September 8, 2015

I think you just want:

currentUser.name == "username"

for the condition. If you want to compare the full name, which is not really advisable, you could use:

currentUser.displayName == "Mr. A User"
0 votes
jared m September 9, 2015

Hi Jamie,

Both suggestions return "Cannot get property 'name'(or displayName) on null object"

Hi Taha,

Returns a "The condition evaluated to false"

Thank you for the suggestions!!!

 

Would it be possible to have a condition that evaluates to true if a custom field has changed?  The field in question will only ever have a value if the email sender does not have a JIRA account.


JamieA
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.
September 9, 2015

I'm not sure what the context of your question is, can you attach a screen-cap showing the configuration.

0 votes
Taha Khanzada
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.
September 8, 2015

Hi Jared,

How about you try using this script in your condition

import com.atlassian.jira.ComponentManager
def username = ComponentManager.instance.userUtil.getUserObject("jirausername")
issue.reporter == "username"

Taha

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events