Colin Watson has proposed merging lp:~cjwatson/launchpad/chase-email-alias into 
lp:launchpad.

Commit message:
Chase email alias from [email protected] to 
[email protected].

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/chase-email-alias/+merge/371932

This is an email alias that was broken by the migration of lists.canonical.com 
to Mailman 3.  While the alias should be fixed now, it would probably be better 
to use the primary list address.
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of 
lp:~cjwatson/launchpad/chase-email-alias into lp:launchpad.
=== modified file 'scripts/script-monitor.py'
--- scripts/script-monitor.py	2015-03-13 19:05:50 +0000
+++ scripts/script-monitor.py	2019-08-28 12:50:21 +0000
@@ -87,15 +87,15 @@
             msg = MIMEText('\n'.join(msg))
             msg['Subject'] = "Scripts failed to run: %s" % ", ".join(subj)
             msg['From'] = '[email protected]'
-            msg['Reply-To'] = '[email protected]'
-            msg['To'] = '[email protected]'
+            msg['Reply-To'] = '[email protected]'
+            msg['To'] = '[email protected]'
 
             # Send out the email.
             smtp = smtplib.SMTP()
             smtp.connect()
             smtp.sendmail(
                 '[email protected]',
-                ['[email protected]'], msg.as_string())
+                ['[email protected]'], msg.as_string())
             smtp.close()
             return 2
     except:

_______________________________________________
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp

Reply via email to