私はubuntuサーバー12.04にpostfix付きのmailmanのセットアップを持っています。私の問題は、メーリングリストの電子メールが私の機関の外部の電子メールアドレスに転送されないことです。しかしながら
mail
を含む簡単な電子メールが正常に送信されますこれが私のmain.cf
です:
#myorigin = sub.myinstitution.tld
mynetworks = 127.0.0.0/8 xxx.xxx.xxx.xxx/16 # this is my institution ip range
relayhost = smtp.myinstitution.tld
#inet_interfaces = loopback-only
#local_transport = error:local delivery is disabled
virtual_alias_maps = hash:/etc/postfix/virtual
myhostname = mywebsite.tld
mydestination = $myhostname, localhost.$mydomain, localhost
#relay_domains = $mydestination, ecs.soton.ac.uk
serverfault と buntu forums にもこれらの2つのリンクがありますが、どちらの解決策も私にはうまくいかないようです。
どんな助けでも大歓迎です。
postconf -n
の出力:
$ postconf -n
config_directory = /etc/postfix
mydestination = $myhostname, localhost.$mydomain, localhost
myhostname = mywebsite.tld
mynetworks = 127.0.0.0/8 xxx.xxx.xxx.xxx/16
myorigin = mywebsite.tld
relayhost = smtp.myinstitution.tld
virtual_alias_maps = hash:/etc/postfix/virtual
ログに何を投稿すればよいかわかりません。そこには何も悪いところは見当たりません。これは、メッセージを送信したときに/var/log/mail.log
で発生することです。
Sep 29 10:23:19 mywebsite postfix/pickup[30113]: 3CD85E4382: uid=10785 from=<myuser>
Sep 29 10:23:19 mywebsite postfix/cleanup[30172]: 3CD85E4382: message-id=<[email protected]>
Sep 29 10:23:19 mywebsite postfix/qmgr[30114]: 3CD85E4382: from=<[email protected]>, size=338, nrcpt=1 (queue active)
Sep 29 10:23:19 mywebsite postfix/smtp[30174]: 3CD85E4382: to=<[email protected]>, orig_to=<list>, relay=smtp.myinstitution.tld[xxx.xxx.xxx.xxx]:25, delay=0.07, delays=0.04/0/0.01/0.01, dsn=2.0.0, status=sent (250 2.0.0 q8T9Nap1028342 Message accepted for delivery)
Sep 29 10:23:19 mywebsite postfix/qmgr[30114]: 3CD85E4382: removed
How郵便配達員はメールを送信しますか?常にローカルのsendmail(1)コマンドを使用しますか、それとも機能するためにSMTPも必要ですか?
inet_interfaces = loopback_only
でSMTPを明示的に不可能にしました。
postconf -n
からの出力と、問題を示すログセグメントを追加してください。