[galaxy-dev] Local Galaxy Install - Debug Report FROM address as Admin and not User?

2013-10-01 Thread Adam Brenner
Howdy, On our local Galaxy install, everytime a user submits a bug report, it does email all the admins -- as defined in universe_wsgi.ini -- but the FROM address is not of the user, but rather the first email address from the admin list. Is this normal? May we have it changed so the FROM

Re: [galaxy-dev] Local Galaxy Install - Debug Report FROM address as Admin and not User?

2013-10-01 Thread Martin Čech
Hi Adam, you are right about the behaviour, this is what Galaxy does. However it sends the email to the user too, so Reply all will reach the user's email address. This is how the feature was meant to be used. Martin On Tue, Oct 1, 2013 at 12:59 PM, Adam Brenner aebre...@uci.edu wrote:

Re: [galaxy-dev] Local Galaxy Install - Debug Report FROM address as Admin and not User?

2013-10-01 Thread Adam Brenner
Martin, Thanks for the response. Yes, I do notice the reply-to address does include the user, but wouldn't it be better if the FROM address was from the actual user reporting the error? When checking my email, for example, I do not want to see emails that are FROM me, to MYSELF when its really

Re: [galaxy-dev] Local Galaxy Install - Debug Report FROM address as Admin and not User?

2013-10-01 Thread Martin Čech
Adam, it is function *report_error* in /lib/galaxy/webapps/galaxy/controllers/dataset.py you need to set this line * frm = to_address * to * frm = email* and you should be all set. Martin On Tue, Oct 1, 2013 at 2:12 PM, Adam Brenner aebre...@uci.edu wrote: Martin, Thanks for the