From: Mitchell E Berger Date: Mon, 7 Nov 2011 00:00:14 +0000 (-0500) Subject: outage-mail: Send summary to xvm-team, not xvm. X-Git-Url: http://xvm.mit.edu/gitweb/invirt/scripts/outage.git/commitdiff_plain/3cd1b4f2e69776922888bdf3d750d66957dd70e6 outage-mail: Send summary to xvm-team, not xvm. --- diff --git a/outage-mail b/outage-mail index 4731cb5..653c222 100644 --- a/outage-mail +++ b/outage-mail @@ -27,12 +27,12 @@ def send_mail(smtp, opts, message, vm): def send_summary(smtp, opts, messages): msg = MIMEText('\n\n\n'.join(messages)) - msg['To'] = 'xvm@mit.edu' + msg['To'] = 'xvm-team@mit.edu' msg['From'] = opts.from_addr msg['Subject'] = ("xvm outage-mail summary (%d): %s" % (len(messages), opts.subject)) smtp.sendmail(opts.from_addr, - ['xvm@mit.edu'], + ['xvm-team@mit.edu'], msg.as_string()) def main(argv):