@@ -165,6 +165,10 @@ def make_recipients(apps):
165165 desc = "The ipr disclosure handling system" ,
166166 template = 'ietf-ipr@ietf.org' )
167167
168+ rc (slug = 'ipr_submitter' ,
169+ desc = "The submitter of an IPR disclosure" ,
170+ template = '{% if ipr.submitter_email %}{{ ipr.submitter_email }}{% endif %}' )
171+
168172 rc (slug = 'logged_in_person' ,
169173 desc = "The person currently logged into the datatracker who initiated a given action" ,
170174 template = '{% if person and person.email_address %}{{ person.email_address }}{% endif %}' )
@@ -628,10 +632,19 @@ def mt_factory(slug,desc,recipient_slugs):
628632 ])
629633
630634 mt_factory (slug = 'ipr_disclosure_submitted' ,
631- desc = "Recipients when an IPR notification is submitted" ,
635+ desc = "Recipients when an IPR disclosure is submitted" ,
632636 recipient_slugs = ['ipr_requests' ,
633637 ])
634638
639+ mt_factory (slug = 'ipr_disclosure_followup' ,
640+ desc = "Recipients when the secretary follows up on an IPR disclosure submission" ,
641+ recipient_slugs = ['ipr_submitter' ,
642+ ])
643+
644+ mt_factory (slug = 'ipr_disclosure_followup_cc' ,
645+ desc = "Copied when the secretary follows up on an IPR disclosure submission" ,
646+ recipient_slugs = [])
647+
635648def forward (apps , schema_editor ):
636649
637650 make_recipients (apps )
0 commit comments