캐치올 이메일

이메일 및 보안
도메인의 모든 주소를 하나의 받은편지함으로 보내는 이메일 설정으로, 주소가 실제로 존재하지 않아도 작동합니다.
← 용어집으로 돌아가기

Catch-All 이메일은 무엇입니까?

A catch-all 이메일 (도 와일드 카드 이메일이라고도 함)은 도메인의 모든 주소와 지정된 inbox로 전달되는 구성입니다. 누군가가 anyaddress@example.com에 이메일을 보내면, catch-all inbox는 "anyaddress"가 구성 된 사서함인지 관계없이 수신합니다.

Catch-All 이메일 작업 방법

메일 서버에 도착하면:

1. 주소 찾기: 수신자가 존재하는 경우 메일 서버 체크

2. 캐치 - 모든 체크 : 찾을 수없는 경우, 서버는 catch-all 규칙을 확인합니다.

3. Routing: 메시지는 catch-all mailbox에 전달됩니다.

4. No Bounce : 비 배달 보고서 없음 (부스)는 sender에 보내집니다

Traditional Setup:

sales@example.com → sales inbox

info@example.com → info inbox

unknown@example.com → bounce (550 No such user)

With Catch-All:

sales@example.com → sales inbox

info@example.com → info inbox

unknown@example.com → catch-all inbox ✓

typo@example.com → catch-all inbox ✓

Catch-All 이메일 구성

# # # # cPanel / WHM

Email → Default Address → Set Default Address

Select: Forward to Email Address

Enter: catchall@example.com

펄스크

Mail Settings → Mail Forwarding

Enable "Redirect mail to address"

Enter destination address

Postfix (직접 구성)

# /etc/postfix/virtual

@example.com catchall@example.com

# Reload Postfix

postmap /etc/postfix/virtual

systemctl reload postfix

마이크로소프트 365

Microsoft 365는 true catch-all을 지원하지 않지만 만들 수 있습니다.

구글 워크스페이스

Admin Console → Apps → Google Workspace → Gmail

→ Default Routing → Catch-all address

Enter: catchall@example.com

Catch-All 이메일 케이스 사용

마이그레이션 중

새 시스템에 마이그레이션하는 동안 오래된 주소로 이메일을 수신:

Phase 1: Enable catch-all, forward to admin

Phase 2: Monitor and create real mailboxes as needed

Phase 3: Disable catch-all once migration complete

작은 조직

어떤 조회든지 취급할 수 있는 몇몇 직원이 있을 때 이메일 관리를 간단하게 합니다.

Typo 보호

캡처 일반적인 mnots:

support@example.com   → Real mailbox

suport@example.com → Caught

suppport@example.com → Caught

개발/테스트

각 주소를 구성하지 않고 테스트 이메일을 수락:

test-user1@dev.example.com  → dev catch-all

test-user2@dev.example.com → dev catch-all

Catch-All 이메일의 장점

계정 만들기이름 *
모든 메시지Typos는 반송에서 유래하지 않습니다.
간단한 설정모든 mailbox를 만들 필요가 없습니다
융통성 이메일 주소를 입력하세요
Discover 필요 사람들은 무엇을 기대하는지 알아보기

장애 및 위험

스팸 볼륨

Spammers 대상 비 제휴 주소. Catch-all은 모든 것을 받아들입니다:

Without catch-all: 100 spam attempts → 95 bounced

With catch-all: 100 spam attempts → 100 delivered

결과: 스팸 볼륨의 질량 증가.

Backscatter와 블랙리스트

서버는 스팸을 수락하고 나중에 거부합니다. 이것은 backscatter를 창조합니다 (Forged senders에 분기)는 당신의 IP를 검게 할 수 있습니다.

저장 문제

무제한 이메일 주소 = 무제한 저장 소비.

보안 위험

Attackers는 유효한 도메인을 확인하기 위해 catch-all을 사용합니다:

Test: random@example.com

Response: Accepted (catch-all exists) vs Rejected (no catch-all)

이메일 인증

Catch-all은 전달된 메시지를 위한 SPF/DKIM/DMARC 검증과 방해할 수 있습니다.

Catch-모든 대안

Alias 기반 접근

예상된 변형에 대한 특정 별명 만들기:

sales@example.com       → main-sales@example.com

sale@example.com → main-sales@example.com

sales-team@example.com → main-sales@example.com

스마트 여정 규칙

일반적인 패턴에 대한 규칙을 구성:

*-support@example.com  → support queue

*-billing@example.com → billing queue

연락처 양식

웹 양식을 사용하여 이메일 주소를 내부로 변환합니다.

최고의 연습

사용 캐치 - 모든 Temporarily

특정 기간 동안만 사용 가능 (이민, 이벤트) 오히려 영구적으로.

Aggressive 스팸 필터링 구현

SpamAssassin threshold: 3.0 (stricter than default 5.0)

Greylisting: enabled

DNSBL checks: multiple lists

모니터 캐치 - 모든 볼륨

붙잡는 무슨을 추적하십시오:

# Count catch-all deliveries by address

grep "catch-all" /var/log/mail.log | \

awk '{print $7}' | sort | uniq -c | sort -rn | head -20

실제 우편함 만들기

법적인 본을 감시하는 경우에, 적당한 mailboxes를 창조하십시오:

# If you see:

150 messages → careers@example.com (caught)

# Action:

Create careers@example.com as real mailbox

Remove from catch-all pattern

Subdomain 캐치-모든 전용

하위 도메인에 제한 catch-all, 당신의 기본 도메인:

example.com           → No catch-all

test.example.com → Catch-all enabled

staging.example.com → Catch-all enabled

매일 정리

Automate 스팸 제거:

# Delete spam from catch-all daily

find /var/mail/catchall -type f -name "*spam*" -mtime +1 -delete

도메인이 Catch-All를 사용한다면 탐지

이메일 검증 서비스 임의 주소로 테스트:
Send to: random-test-12345@example.com

If accepted: Likely catch-all

If rejected: No catch-all

SMTP 대화 테스트:
telnet mx1.example.com 25

HELO test.com

MAIL FROM: <test@test.com>

RCPT TO: <nonexistent-random@example.com>

# 250 OK = catch-all exists

# 550 No such user = no catch-all

보안 고려 사항

이메일 요약

Catch-all은 유효한 주소를 발견하는 공격자를 방지하지만 합법적 인 검증을 방지합니다.

Sender 평판

높은 스팸 합격은 합법적 인 아웃 바운드 이메일에 영향을 미치는 도메인의 sender 명성을 손상시킬 수 있습니다.

규정 준수 문제

GDPR 및 데이터 보유 정책은 모든 것을 수락하는 것보다 원치 않는 이메일을 거부 할 수 있습니다.

Catch-All 사용시

좋은 사용 사례:

:

Catch-all 이메일은 두 배 가장자리 칼입니다 : 편리하지만 위험합니다. sparingly와 강한 스팸 보호를 사용하십시오.

이 지식을 활용하세요

DomScan의 API를 사용하여 도메인 가용성, 상태 등을 확인하세요.