[Python-checkins] r54584 - tracker/instances/python-dev/scripts/roundup-summary

paul.dubois python-checkins at python.org
Tue Mar 27 07:14:32 CEST 2007


Author: paul.dubois
Date: Tue Mar 27 07:14:31 2007
New Revision: 54584

Modified:
   tracker/instances/python-dev/scripts/roundup-summary
Log:
Change 'from' address of the email.


Modified: tracker/instances/python-dev/scripts/roundup-summary
==============================================================================
--- tracker/instances/python-dev/scripts/roundup-summary	(original)
+++ tracker/instances/python-dev/scripts/roundup-summary	Tue Mar 27 07:14:31 2007
@@ -844,8 +844,8 @@
     writer = MimeWriter.MimeWriter(message)
     writer.addheader('Subject', 'Summary of %s Issues'%db.config.TRACKER_NAME)
     writer.addheader('To', recipient)
-    writer.addheader('From', '%s <%s>'%(db.config.TRACKER_NAME, db.config.ADMIN_EMAIL))
-    writer.addheader('Reply-To', '%s <%s>'%(db.config.TRACKER_NAME, 'DONOTREPLY at NOWHERE.ORG'))
+    writer.addheader('From', '%s <%s>'%(db.config.TRACKER_NAME, 'status at bugs.python.org'))
+    writer.addheader('Reply-To', '%s <%s>'%(db.config.TRACKER_NAME, 'status at bugs.python.org'))
     writer.addheader('MIME-Version', '1.0')
     writer.addheader('X-Roundup-Name', db.config.TRACKER_NAME)
 


More information about the Python-checkins mailing list