From 3cd1b4f2e69776922888bdf3d750d66957dd70e6 Mon Sep 17 00:00:00 2001 From: Mitchell E Berger Date: Sun, 6 Nov 2011 19:00:14 -0500 Subject: [PATCH] outage-mail: Send summary to xvm-team, not xvm. --- outage-mail | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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): -- 1.7.9.5