Fixing Message-Id on root message
This commit is contained in:
parent
bb8df1393f
commit
47fd6057e8
1 changed files with 2 additions and 1 deletions
|
@ -197,10 +197,11 @@ def SendRootMessageGDBTesters (branch, change, rev,
|
|||
if not istrysched:
|
||||
mail['To'] = GDB_MAIL_TO
|
||||
mailto = GDB_MAIL_TO
|
||||
mail['Message-Id'] = "<%s@gdb-build>" % rev
|
||||
else:
|
||||
mail['To'] = try_to
|
||||
mailto = try_to
|
||||
mail['Message-Id'] = "<%s-try@gdb-build>" % rev
|
||||
mail['Message-Id'] = "<%s-try@gdb-build>" % rev
|
||||
|
||||
s = smtplib.SMTP ('localhost')
|
||||
s.sendmail (GDB_MAIL_FROM, [ mailto ], mail.as_string ())
|
||||
|
|
Loading…
Reference in a new issue