Postfix 구성에 대한 도움을 요청하고 있습니다.
같은 서버에 설치된 메일 목록으로 메일을 전송하도록 Postfix를 올바르게 구성 할 수 없습니다. 지난 며칠 동안 여러 단계를 밟았으며 마지막 단계는 http://www.postfix.org/VIRTUAL_README.html 의 Mailing Lists 섹션에 있습니다.
누군가 이것을보고 제게 누락 된 것을 알려주십시오.
기본적으로 Postfix는 기본 이메일을 보내도록 구성되었으며 xxx@mail-test.company.org
메일 목록을 사용하고 싶습니다 xxx@listtest.company.org
.
**DYN-DNS**
listtest.company.org A 216.111.222.85
listtest.company.org MX 216.111.222.85
listtest.company.org TXT "v=spf1 a ptr mx ip4:216.111.222.85 mx:mail-test.company.org -all"
mail-test.company.org A 216.111.222.85
mail-test.company.org MX 216.111.222.85
mail-test.company.org TXT "v=spf1 a ptr mx ip4:216.111.222.85 mx:mail-test.company.org -all"
**main.cf**
myhostname = mail-test.company.org
mydomain = company.org
myorigin = $hostname
alias_maps = hash:/etc/aliases, hash:/etc/mailman/aliases
alias_database = hash:/etc/aliases, hash:/etc/mailman/aliases
recipient_delimiter = +
virtual_alias_maps = hash:/etc/postfix/virtual
mydestination = $myhostname, listtest.$mydomain
/etc/postfix/virtual:
listname-request@listtest.company.org listname-request
listname@listtest.company.org listname
owner-listname@listtest.company.org owner-listname
/etc/aliases:
listname: "/usr/lib/mailman/mail/mailman post mailman"
owner-listname: ...
listname-request: ...
**mm_cfg.py**
DEFAULT_URL_HOST = 'listtest.company.org'
DEFAULT_EMAIL_HOST = 'listtest.company.org'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
MTA = 'Postfix'
로그의 첫 번째 부분은 listtest.company.org의 거부를 표시하고 두 번째 부분은 mail-test.company.org 로의 성공적인 전송을 표시합니다.
/ var / log / maillog
Aug 17 15:46:50 listserv postfix/smtpd[19870]: NOQUEUE: reject: RCPT from
Mail1.company.org[66.173.196.101]: 554 5.7.1 <XXXX@listtest.company.org>:
Relay access denied; from=<user@company1.ORG> to=<list@listtest.company.org>
proto=SMTP helo=<MAIL1.company.ORG>
Aug 17 15:46:50 listserv postfix/cleanup[19877]: D3F93209F1: message-
id=<050C37C3BC21CC4483AC395BAFEC94E506116BF5@mail1.informs.org>
Aug 17 15:46:50 listserv postfix/smtpd[19870]: disconnect from
Mail1.company.org[66.173.196.101]
Aug 17 15:46:50 listserv postfix/qmgr[19197]: D3F93209F1:
from=<user2@company.ORG>, size=6670, nrcpt=1 (queue active)
Aug 17 15:46:50 listserv postfix/cleanup[19877]: F37B120A3B: message-
id=<050C37C3BC21CC4483AC395BAFEC94E506116BF5@mail1.informs.org>
Aug 17 15:46:51 listserv postfix/qmgr[19197]: F37B120A3B:
from=<user2@company.ORG>, size=6819, nrcpt=1 (queue active)
Aug 17 15:46:51 listserv postfix/local[19878]: D3F93209F1:
to=<company_it@mail-test.company.org>, relay=local, delay=0.18,
delays=0.17/0.01/0/0, dsn=2.0.0, status=sent (forwarded as F37B120A3B)
Aug 17 15:46:51 app02-listserv postfix/qmgr[19197]: D3F93209F1: removed
도움을 주시면 감사하겠습니다.