Skip to content

Commit c79f367

Browse files
committed
Merged in [8718] from rjsparks@nostrum.com:\n Copy the secretariat on the message sent to the RFC Editor and IANA when a draft is pulled from the RFC Editor queue. Fixes ticket ietf-tools#1549.
- Legacy-Id: 8866 Note: SVN reference [8718] has been migrated to Git commit 1d7d5dd
2 parents 0316c33 + 1d7d5dd commit c79f367

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

ietf/doc/mails.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ def email_stream_changed(request, doc, old_stream, new_stream, text=""):
5050
url=settings.IDTRACKER_BASE_URL + doc.get_absolute_url()))
5151

5252
def email_pulled_from_rfc_queue(request, doc, comment, prev_state, next_state):
53+
extra=extra_automation_headers(doc)
54+
extra['Cc'] = 'iesg-secretary@ietf.org'
5355
send_mail(request, ["IANA <iana@iana.org>", "RFC Editor <rfc-editor@rfc-editor.org>"], None,
5456
"%s changed state from %s to %s" % (doc.name, prev_state.name, next_state.name),
5557
"doc/mail/pulled_from_rfc_queue_email.txt",
@@ -58,7 +60,7 @@ def email_pulled_from_rfc_queue(request, doc, comment, prev_state, next_state):
5860
next_state=next_state,
5961
comment=comment,
6062
url=settings.IDTRACKER_BASE_URL + doc.get_absolute_url()),
61-
extra=extra_automation_headers(doc))
63+
extra=extra)
6264

6365

6466
def email_authors(request, doc, subject, text):

0 commit comments

Comments
 (0)