Skip to content

Commit fae9066

Browse files
committed
Merged in [9925] from rjsparks@nostrum.com:
Changed several email alias references from tools.ietf.org to ietf.org. Fixes ietf-tools#1759. - Legacy-Id: 9931 Note: SVN reference [9925] has been migrated to Git commit cd5b497
2 parents 17b100e + cd5b497 commit fae9066

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

ietf/doc/mails.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def generate_approval_mail_approved(request, doc):
179179
doc.group.name_with_wg = doc.group.name + " Working Group"
180180
if doc.group.list_email:
181181
cc.append("%s mailing list <%s>" % (doc.group.acronym, doc.group.list_email))
182-
cc.append("%s chair <%s-chairs@tools.ietf.org>" % (doc.group.acronym, doc.group.acronym))
182+
cc.append("%s chair <%s-chairs@ietf.org>" % (doc.group.acronym, doc.group.acronym))
183183
else:
184184
doc.group.name_with_wg = doc.group.name
185185

ietf/doc/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def collect_email_addresses(emails, doc):
467467
if role.email.address not in emails:
468468
emails[role.email.address] = '"%s"' % (role.person.name)
469469
if doc.group.type.slug == 'wg':
470-
address = '%s-ads@tools.ietf.org' % doc.group.acronym
470+
address = '%s-ads@ietf.org' % doc.group.acronym
471471
if address not in emails:
472472
emails[address] = '"%s-ads"' % (doc.group.acronym)
473473
elif doc.group.type.slug == 'rg':

ietf/doc/views_draft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def to_iesg(request,name):
582582
doc.save()
583583

584584
extra = {}
585-
extra['Cc'] = "%s-chairs@tools.ietf.org, iesg-secretary@ietf.org, %s" % (doc.group.acronym,doc.notify)
585+
extra['Cc'] = "%s-chairs@ietf.org, iesg-secretary@ietf.org, %s" % (doc.group.acronym,doc.notify)
586586
send_mail(request=request,
587587
to = doc.ad.email_address(),
588588
frm = login.formatted_email(),

ietf/secr/drafts/email.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def get_fullcc_list(draft):
147147
emails[role.email.address] = '"%s"' % (role.person.name)
148148
# add AD
149149
if draft.group.type.slug == 'wg':
150-
emails['%s-ads@tools.ietf.org' % draft.group.acronym] = '"%s-ads"' % (draft.group.acronym)
150+
emails['%s-ads@ietf.org' % draft.group.acronym] = '"%s-ads"' % (draft.group.acronym)
151151
elif draft.group.type.slug == 'rg':
152152
email = draft.group.parent.role_set.filter(name='chair')[0].email
153153
emails[email.address] = '"%s"' % (email.person.name)

ietf/secr/utils/mail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def get_ad_email_list(group):
66
'''
77
emails = []
88
if group.type.slug == 'wg':
9-
emails.append('%s-ads@tools.ietf.org' % group.acronym)
9+
emails.append('%s-ads@ietf.org' % group.acronym)
1010
elif group.type.slug == 'rg' and group.parent:
1111
emails.append(group.parent.role_set.filter(name='chair')[0].email.address)
1212
return emails

ietf/templates/doc/document_draft.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@
413413
</table>
414414

415415
<div class="buttonlist">
416-
<a class="btn btn-default btn-xs" href="mailto:{{ doc.name }}@tools.ietf.org?subject=Mail%20regarding%20{{ doc.name }}"><span class="fa fa-envelope-o"></span> Email authors</a>
416+
<a class="btn btn-default btn-xs" href="mailto:{{ doc.name }}@ietf.org?subject=Mail%20regarding%20{{ doc.name }}"><span class="fa fa-envelope-o"></span> Email authors</a>
417417
<a class="btn btn-default btn-xs" href="{% url "ipr_search" %}?submit=draft&amp;id={{ doc.name }}" rel="nofollow"><span class="fa fa-bolt"></span> IPR {% if doc.related_ipr %} <span class="badge">{{doc.related_ipr|length}}</span>{% endif %}</a>
418418
<a class="btn btn-default btn-xs" href="{% url "doc_references" doc.canonical_name %}" rel="nofollow"><span class="fa fa-long-arrow-left"></span> References</a>
419419
<a class="btn btn-default btn-xs" href="{% url "doc_referenced_by" doc.canonical_name %}" rel="nofollow"><span class="fa fa-long-arrow-right"></span> Referenced by</a>

0 commit comments

Comments
 (0)