Skip to content

Commit fc5e944

Browse files
committed
Merged [5529] from jmh@joelhalpern.com:
Add document's notification list to destination email addresses when the document leaves IETF LC. - Legacy-Id: 5558 Note: SVN reference [5529] has been migrated to Git commit f81f08c
2 parents fd2342b + f81f08c commit fc5e944

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

bin/mergedevbranch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ else
124124
die "Could not find a branch matching '$branch'"
125125
fi
126126

127-
if grep "@$rev $branch" mergelog; then note "Changeset $branch@$rev is already in the merge log. Skipping it."; exit 0; fi
127+
if grep "@$rev $branch" mergelog; then die "Changeset $branch@$rev is already in the merge log. Skipping it."; exit 0; fi
128128

129129
note "Will attempt merge from $branch@$rev"
130130

ietf/idrfc/mails.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,11 @@ def email_last_call_expired(doc):
510510
def email_last_call_expiredREDESIGN(doc):
511511
text = "IETF Last Call has ended, and the state has been changed to\n%s." % doc.get_state("draft-iesg").name
512512

513+
to = [x.strip() for x in doc.notify.replace(';', ',').split(',')]
514+
to.insert(0, "iesg@ietf.org")
515+
513516
send_mail(None,
514-
"iesg@ietf.org",
517+
to,
515518
"DraftTracker Mail System <iesg-secretary@ietf.org>",
516519
"Last Call Expired: %s" % doc.file_tag(),
517520
"idrfc/change_notice.txt",

0 commit comments

Comments
 (0)