Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Do Raley Emails Notifications store private data as defined by Atlassian.

No, we do not store user's private data


Where are you hosted?

Our servers are located in New York City, US.


Are Raley notifications replacing standard Jira/JSM notifications?

...

Emails can be sent from the following IP's:
104.236.5.88

45.55.225.41
45.55.218.70

161.35.132.150

138.197.14.52

64.225.21.7

What do I need to get started with Raley Notifications?

...

Yes, please have a look here: Predefined Customer Email Notification templates. Also, you're most welcome to use our Template Wizard


We have another add-on that has to do something before Raley should handle the Jira event. Can you delay your processing?

...

#foreach ($issue in $issues)
 Project: $issue.fields.project.name Issue type: $issue.fields.issuetype.name
 Date and time of creation: $jirassimo.formatDate($issue.fields.created, "dd MMM yy hh:mm")
 Reporter: $issue.fields.reporter.name
#end

Numeric fields

To format a numeric JIRA field use $jirassimo.formatNumber(numberField, outputFormat) function. An example of usage:

$jirassimo.formatNumber($issue.customfield_12345, "#")

Assuming that customfield_12345 contains a value 10.45 the result will be 10. We use Java DecimalFormat to format the values. 


How to use Settings?

Settings is essentially a map of key=value pairs stored with Raley. At runtime you can get a value referenced by key using the following expression:

$jirassimo.settingValue($issue.fields.customfield_10000)

This will return a setting's value that corresponds to key stored in $issue.fields.customfield_10000

Check out this article.


Sending to different Slack channels depending on user's email

...

This is another name for scheduled messagingThe whole idea here is that Raley will not react on specific events in your host JIRAJira, but rather poll it at specific times and send messages about issues that are relevant to JQL.

...

  • Insufficient privileges in JIRA Jira - for instance, retrieval of related users or projects. 
  • Errors during template evaluation. Some fields might be missing or in wrong format
  • Bad credentials for Email or Slack. 
  • IO related problems

These errors would be normally reported to user on the list of Raley notifications just below the names of respective messengers. When you fix it, assuming that the fix was correct, the error message will disappear next time the current messenger is successfully run.

Also, you can check Send Audit tab and look for the notifications that have Status = Error.