postfix를 실행하는 Ubuntu 서버가 있습니다. 내 도메인의 메일 서버가 아닙니다.
크론 작업이 루트에 대해 실행될 때마다 출력 메일이 로컬로 전달되지 않고 대신 기본 메일 서버를 통해 root@mydomain.com으로 전송됩니다. 이것은 내가 원하는 것이 아닙니다.
루트 메일을 로컬로 전달하거나 anothermail@anotherdomain.com으로 전달하고 싶습니다.
둘 다 수정 ~root/.forward
하고 /etc/aliases
newaliases를 실행 하려고 시도 했지만 아무런 도움이되지 않습니다 (postfix가 메일을 로컬로 배달하려고 할 때만 이러한 파일을 확인합니다).
어떡해?
이것은 /etc/postfix/main.cf
:
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
append_dot_mydomain = no
readme_directory = no
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
myhostname = linux1.mydomain.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = linux1.mydomain.com, localhost.linux1.mydomain.com, localhost
relayhost = my.isps.relayhost.com
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = loopback-only
편집하다:
루트로 메일을 보낼 때 다음과 같이됩니다 /var/log/mail.log
.
Mar 7 09:39:17 linux1 postfix/pickup[31381]: F3B9C98025E: uid=1000 from=<ct>
Mar 7 09:39:18 linux1 postfix/cleanup[31556]: F3B9C98025E: message-id=<20130307083917.F3B9C98025E@linux1.mydomain.com>
Mar 7 09:39:18 linux1 postfix/qmgr[28525]: F3B9C98025E: from=<ct@mydomain.com>, size=283, nrcpt=1 (queue active)
Mar 7 09:39:18 linux1 postfix/smtp[31558]: F3B9C98025E: to=<root@mydomain.com>, orig_to=<root>, relay=my.isps.relayhost.com[<IP address omitted>]:25, delay=0.72, delays=0.19/0.02/0.27/0.25, dsn=2.0.0, status=sent (250 Ok: queued as A97F5D8126)
Mar 7 09:39:18 linux1 postfix/qmgr[28525]: F3B9C98025E: removed
"ct"라는 이름은 내 사용자 이름입니다. 이 명령을 통해 위의 텍스트를 생성했습니다.
echo test | mail -s test root
내용 /etc/mailname
은 :
mydomain.com
내용 /etc/aliases
은 :
root: anothermail@anotherdomain.com
postmaster: root
anothermail@anotherdomain.com은 루트 메일을 전달할 위치입니다.
/etc/hosts
실제로 내용은 조금 놀랍습니다.
127.0.0.1 localhost
127.0.1.1 linux1.mylinux.mydomain.com linux1
여기서 "mylinux"는 linux1이 가상 머신으로 실행되는 호스트 운영 체제의 호스트 이름입니다. "mylinux"가 어떻게 들어 왔는지 잘 모르겠습니다. (그러나 이것이 실제로 내 문제의 원인 일 수 있습니까?)