Postfix 서버에서 동일한 도메인의 주소로 이메일을 보내려고 할 때 (예 : 서버 호스트 이름이 mail.example.com이고 test@example.com으로 이메일을 보내려고하면) 로그에 다음 오류가 있고 이메일이 전달되지 않습니다 Recipient address rejected: User unknown in local recipient table
.. 다른 도메인의 주소로 보내도 아무런 문제가 없습니다. 내 /etc/postfix/main.cf 파일은 다음과 같습니다.
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
readme_directory = no
# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
myhostname = mail.example.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
#myorigin = /etc/mailname
myorigin = $mydomain
mydestination = $mydomain, localhost.$mydomain, localhost
relayhost =
#fake IP address
mynetworks = 127.0.0.0/8 100.837.191.223
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
mail.example.com
MX 레코드로 설정되어 있습니까? 이 서버는 정말mail.example.com
입니까?