feat(domain): enhance domain info lookup & handler refactoring

- 도메인 조회(info): 내 도메인 아니면 자동으로 WHOIS 조회 (naver.com 등 지원)
- SMS 파싱: 정규식 실패 시 AI 폴백 로직 추가
- 리팩토링: UserService, ConversationService 분리
- 문서: README.md 및 CODE_REVIEW.md 업데이트
This commit is contained in:
kappa
2026-01-19 17:12:07 +09:00
parent d4c0525451
commit 410676e322
10 changed files with 1900 additions and 160 deletions

View File

@@ -77,7 +77,7 @@ Documentation: https://github.com/your-repo
console.log('[Email] 수신:', message.from, 'Size:', message.rawSize);
// SMS 내용 파싱
const notification = parseBankSMS(rawEmail);
const notification = await parseBankSMS(rawEmail, env);
if (!notification) {
console.log('[Email] 은행 SMS 파싱 실패');
return;