diff --git a/src/applications/auth/controller/PhabricatorEmailLoginController.php b/src/applications/auth/controller/PhabricatorEmailLoginController.php index 92accc7494..f57a29b11a 100644 --- a/src/applications/auth/controller/PhabricatorEmailLoginController.php +++ b/src/applications/auth/controller/PhabricatorEmailLoginController.php @@ -71,8 +71,11 @@ final class PhabricatorEmailLoginController $target_email->getUserPHID()); if ($verified_addresses) { $errors[] = pht( - 'That email address is not verified. You can only send '. - 'password reset links to a verified address.'); + 'That email address is not verified, but the account it is '. + 'connected to has at least one other verified address. When an '. + 'account has at least one verified address, you can only send '. + 'password reset links to one of the verified addresses. Try '. + 'a verified address instead.'); $e_email = pht('Unverified'); } }