Skip to content

Commit 37c5d31

Browse files
committed
Fix a bug that prevented the IRSG from being CC'ed, and correct its email
address. Commit ready for merge. - Legacy-Id: 10672
1 parent eabe46b commit 37c5d31

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/mailtrigger/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ def gather_conflict_review_steering_group(self,**kwargs):
110110
addrs = []
111111
if 'doc' in kwargs:
112112
for reldoc in kwargs['doc'].related_that_doc(['conflrev']):
113-
if reldoc.document.stream_id=='irsg':
114-
addrs.append('"Internet Research Steering Group" <irsg@ietf.org>')
113+
if reldoc.document.stream_id=='irtf':
114+
addrs.append('"Internet Research Steering Group" <irsg@irtf.org>')
115115
return addrs
116116

117117
def gather_group_steering_group(self,**kwargs):
118118
addrs = []
119-
sg_map = dict( wg='"The IESG" <iesg@ietf.org>', rg='"Internet Research Steering Group" <irsg@ietf.org>' )
119+
sg_map = dict( wg='"The IESG" <iesg@ietf.org>', rg='"Internet Research Steering Group" <irsg@irtf.org>' )
120120
if 'group' in kwargs and kwargs['group'].type_id in sg_map:
121121
addrs.append(sg_map[kwargs['group'].type_id])
122122
return addrs

0 commit comments

Comments
 (0)