← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~cjwatson/launchpad/chase-email-alias into lp:launchpad

 

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

Commit message:
Chase email alias from launchpad@xxxxxxxxxxxxxxxxxxx to canonical-launchpad@xxxxxxxxxxxxxxxxxxx.

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'] = 'script-failures@xxxxxxxxxxxxx'
-            msg['Reply-To'] = 'launchpad@xxxxxxxxxxxxxxxxxxx'
-            msg['To'] = 'launchpad@xxxxxxxxxxxxxxxxxxx'
+            msg['Reply-To'] = 'canonical-launchpad@xxxxxxxxxxxxxxxxxxx'
+            msg['To'] = 'canonical-launchpad@xxxxxxxxxxxxxxxxxxx'
 
             # Send out the email.
             smtp = smtplib.SMTP()
             smtp.connect()
             smtp.sendmail(
                 'script-failures@xxxxxxxxxxxxx',
-                ['launchpad@xxxxxxxxxxxxxxxxxxx'], msg.as_string())
+                ['canonical-launchpad@xxxxxxxxxxxxxxxxxxx'], msg.as_string())
             smtp.close()
             return 2
     except:


Follow ups