fix: 放开 2925 全模式目标邮箱匹配

- 让 2925 提供邮箱与接收邮箱模式都启用 targetEmail 弱匹配
- 同步更新轮询测试,验证 provide 与 receive 模式行为一致
This commit is contained in:
Isulew
2026-04-27 15:15:06 +08:00
parent b71bccaf8a
commit 941102200f
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -214,8 +214,7 @@
function getVerificationPollPayload(step, state, overrides = {}) {
const is2925Provider = state?.mailProvider === '2925';
const mail2925MatchTargetEmail = is2925Provider
&& String(state?.mail2925Mode || '').trim().toLowerCase() === 'receive';
const mail2925MatchTargetEmail = is2925Provider;
if (step === 4) {
return {
filterAfterTimestamp: is2925Provider ? 0 : getHotmailVerificationRequestTimestamp(4, state),