diff --git a/templates/zerver/emails/find_team.source.html b/templates/zerver/emails/find_team.source.html index 55d2d5bd8f..712220f06a 100644 --- a/templates/zerver/emails/find_team.source.html +++ b/templates/zerver/emails/find_team.source.html @@ -5,19 +5,13 @@ {% endblock %} {% block content %} -
{% trans %}Hi {{ user_name }},{% endtrans %}
+{% trans %}Your email address {{ email }} has accounts with the following Zulip organizations hosted by {{ external_host }}:{% endtrans %}
-{% trans %}You can log in to your Zulip organization, {{ realm_name }}, at the following link:{% endtrans %}
- -- {{ realm_uri }} - | -
{% trans %}The email address associated with your account is {{ email }}.{% endtrans %}
+{% trans %}If you have trouble logging in, please contact Zulip support by replying to this email.{% endtrans %}
diff --git a/templates/zerver/emails/find_team.subject.txt b/templates/zerver/emails/find_team.subject.txt index d7c2c22e34..d07a750aa0 100644 --- a/templates/zerver/emails/find_team.subject.txt +++ b/templates/zerver/emails/find_team.subject.txt @@ -1 +1 @@ -{{ _("Your Zulip login page") }} +{{ _("Your Zulip accounts") }} diff --git a/templates/zerver/emails/find_team.txt b/templates/zerver/emails/find_team.txt index 78069b2c94..e6ff94f5ca 100644 --- a/templates/zerver/emails/find_team.txt +++ b/templates/zerver/emails/find_team.txt @@ -1,16 +1,11 @@ {% trans -%} -Hi {{ user_name }}, +Your email address {{ email }} has accounts with the following Zulip organizations hosted by {{ external_host }}: {%- endtrans %} -{% trans -%} -You can log in to your Zulip organization, {{ realm_name }}, at the following link: -{%- endtrans %} - - {{ realm_uri }} - -{% trans %}The email address associated with your account is {{ email }}.{% endtrans %} - +{% for realm in realms %} +* {{ realm.name }}: {{ realm.uri }} +{% endfor %} {% trans %}If you have trouble logging in, please contact Zulip support by replying to this email.{% endtrans %} diff --git a/version.py b/version.py index 40fe7eddec..68c84afe52 100644 --- a/version.py +++ b/version.py @@ -48,4 +48,4 @@ API_FEATURE_LEVEL = 98 # historical commits sharing the same major version, in which case a # minor version bump suffices. -PROVISION_VERSION = "161.1" +PROVISION_VERSION = "162.0" diff --git a/zerver/tests/test_signup.py b/zerver/tests/test_signup.py index 407f0252f2..fedb67c0a7 100644 --- a/zerver/tests/test_signup.py +++ b/zerver/tests/test_signup.py @@ -5440,8 +5440,13 @@ class TestFindMyTeam(ZulipTestCase): self.assertIn("cordeliA@zulip.com", content) from django.core.mail import outbox - # 3 = 1 + 2 -- Cordelia gets an email each for the "zulip" and "lear" realms. - self.assert_length(outbox, 3) + self.assert_length(outbox, 2) + iago_message = outbox[1] + cordelia_message = outbox[0] + self.assertIn("Zulip Dev", iago_message.body) + self.assertNotIn("Lear & Co", iago_message.body) + self.assertIn("Zulip Dev", cordelia_message.body) + self.assertIn("Lear & Co", cordelia_message.body) def test_find_team_ignore_invalid_email(self) -> None: result = self.client_post( diff --git a/zerver/views/registration.py b/zerver/views/registration.py index 69bf42b809..196a7f8b86 100644 --- a/zerver/views/registration.py +++ b/zerver/views/registration.py @@ -1,6 +1,6 @@ import logging import urllib -from typing import Dict, List, Optional +from typing import Any, Dict, List, Optional from urllib.parse import urlencode from django.conf import settings @@ -716,8 +716,6 @@ def accounts_home_from_multiuse_invite(request: HttpRequest, confirmation_key: s def find_account( request: HttpRequest, raw_emails: Optional[str] = REQ("emails", default=None) ) -> HttpResponse: - from zerver.context_processors import common_context - url = reverse("find_account") emails: List[str] = [] @@ -743,17 +741,32 @@ def find_account( for email in emails: emails_q |= Q(delivery_email__iexact=email) - for user in UserProfile.objects.filter( + user_profiles = UserProfile.objects.filter( emails_q, is_active=True, is_bot=False, realm__deactivated=False - ): - context = common_context(user) - context.update( - email=user.delivery_email, - ) + ) + + # We organize the data in preparation for sending exactly + # one outgoing email per provided email address, with each + # email listing all of the accounts that email address has + # with the current Zulip server. + context: Dict[str, Dict[str, Any]] = {} + for user in user_profiles: + key = user.delivery_email.lower() + context.setdefault(key, {}) + context[key].setdefault("realms", []) + context[key]["realms"].append(user.realm) + context[key]["external_host"] = settings.EXTERNAL_HOST + # This value will end up being the last user ID among + # matching accounts; since it's only used for minor + # details like language, that arbitrary choice is OK. + context[key]["to_user_id"] = user.id + + for delivery_email, realm_context in context.items(): + realm_context["email"] = delivery_email send_email( "zerver/emails/find_team", - to_user_ids=[user.id], - context=context, + to_user_ids=[realm_context["to_user_id"]], + context=realm_context, from_address=FromAddress.SUPPORT, request=request, )