galaxy-dist commit a57967485210: EmailAction now comes from 'galaxy-noreply@<host>'.
# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User Dannon Baker <dannon.baker@emory.edu> # Date 1277253193 14400 # Node ID a579674852103600ecd8e8b2549e76abc3917791 # Parent 040be2b94b8ce845278d5ac19139a4bdae8fb088 EmailAction now comes from 'galaxy-noreply@<host>'. --- a/lib/galaxy/jobs/actions/post.py +++ b/lib/galaxy/jobs/actions/post.py @@ -69,9 +69,11 @@ class EmailAction(DefaultJobAction): if smtp_server is None: log.error("Mail is not configured for this galaxy instance. Workflow action aborted.") # Build the email message + frm = 'galaxy-noreply@%s' % trans.request.host + to = job.user.email msg = MIMEText( "Your job '%s' at Galaxy instance %s is complete as of %s." % (job.history.name, trans.request.host, job.update_time)) - msg[ 'To' ] = job.user.email - msg[ 'From' ] = job.user.email + msg[ 'To' ] = to + msg[ 'From' ] = frm msg[ 'Subject' ] = "Galaxy workflow step notification '%s'" try: s = smtplib.SMTP() @@ -80,7 +82,7 @@ class EmailAction(DefaultJobAction): s.close() except Exception, e: log.error("EmailAction PJA Failed, exception: %s" % e) - +L @classmethod def get_config_form(cls, trans): form = """
participants (1)
-
commits-noreply@bitbucket.org