ドメイン単位にしたことにより捨てアドチェックが壊れていた問題を修正 (MisskeyIO#429)

This commit is contained in:
riku6460 2024-02-10 11:41:29 +09:00 committed by GitHub
parent e7d4806714
commit c4fe44152b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -292,18 +292,6 @@ export class EmailService {
reason: null,
};
}
if (json.email_address === undefined) {
return {
valid: false,
reason: 'format',
};
}
if (json.deliverable_email !== undefined && !json.deliverable_email) {
return {
valid: false,
reason: 'smtp',
};
}
if (json.disposable) {
return {
valid: false,