Right now there is no mechanism to send emails to all users in Stash. We will be looking at announcement banners first and look into more types of notifications later on.
BTW, got a work around for the time being, use the REST API to get the list of user and parse it.
https://developer.atlassian.com/static/rest/stash/latest/stash-rest.html#idp83824
I've got the following to work on msys, should work in other *nix:
curl -u $user:$password -X GET -H "Accept: application/json" -H "Content-Type: application/json" "http://stash.company.com/rest/api/1.0/admin/users" 2> /dev/null |
sed 's/\}/\n/g' | grep emailAddress | sed 's/.*emailAddress\":\"//' | sed 's/",\"id\".*//' | grep . | sort -fu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A true lifesaver. Just be aware that (as documented on the referenced REST API page) there's a default limit of 25 records being returned.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's almost 2017 and there still seems to be no option for this.
Are you planning on adding that feature soon? We would very much appreciate that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.