From 2ae5776024d3effe82aedcc44675018b6d879274 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 21 Feb 2011 12:45:09 +0000 Subject: [PATCH] Make the document announcement default Cc: somewhat configurable. Remove iab@iab.org (on request). - Legacy-Id: 2861 --- ietf/idrfc/mails.py | 2 +- ietf/settings.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ietf/idrfc/mails.py b/ietf/idrfc/mails.py index 9e16932c8..7eb892921 100644 --- a/ietf/idrfc/mails.py +++ b/ietf/idrfc/mails.py @@ -97,7 +97,7 @@ def generate_approval_mail(request, doc): else: action_type = "Protocol" - cc = ["Internet Architecture Board ", "RFC Editor "] + cc = settings.DOC_APPROVAL_EMAIL_CC if doc.group.ietfwg.group_type.type != "AG" and not doc.group.name.endswith("Working Group"): doc.group.name_with_wg = doc.group.name + " Working Group" diff --git a/ietf/settings.py b/ietf/settings.py index 27778d51c..67076a442 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -183,6 +183,9 @@ else: CACHE_BACKEND = 'dummy:///' IPR_EMAIL_TO = ['ietf-ipr@ietf.org', ] +DOC_APPROVAL_EMAIL_CC = ["RFC Editor ", ] + + # Liaison Statement Tool settings LIAISON_UNIVERSAL_FROM = 'Liaison Statement Management Tool '