Skip to content

Commit 58810b3

Browse files
committed
Don't set email addresses created for submitted drafts to active any more.
- Legacy-Id: 9167
1 parent f71e616 commit 58810b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/submit/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def ensure_person_email_info_exists(name, email):
254254
except Email.DoesNotExist:
255255
# most likely we just need to create it
256256
email = Email(address=addr)
257-
email.active = False
257+
email.active = True
258258

259259
email.person = person
260260
email.save()

0 commit comments

Comments
 (0)