feat(register): Outlook 邮箱注册跳过密码提交环节

使用 Outlook 邮箱服务时,第8步仅生成密码但不向 OpenAI 提交密码注册请求,直接进入后续验证码流程
This commit is contained in:
cnlimiter
2026-03-21 02:44:43 +08:00
committed by Mison
parent 16f76076c5
commit 92a26a8e1b

View File

@@ -777,6 +777,10 @@ class RegistrationEngine:
self._log(f"8. 邮箱 {self.email} 在 OpenAI 已注册,跳过注册流程", "warning")
result.error_message = f"邮箱 {self.email} 已在 OpenAI 注册"
return result
elif self.email_service.service_type.value == "outlook":
# Outlook 邮箱注册跳过密码提交环节,直接生成密码备用
self._log("8. Outlook 邮箱,跳过密码注册环节")
self.password = self._generate_password()
else:
self._log("8. 注册密码...")
password_ok, password = self._register_password()