Version 8 (modified by mitty, 14 years ago) (diff) |
---|
- Ubuntu/Server/Mail - PukiWiki
- https://help.ubuntu.com/community/MailServer
- https://help.ubuntu.com/community/PostfixCompleteVirtualMailSystemHowto
- 大規模システム向けだが、動作原理の説明の部分が良い
- Ubuntuで各種サーバ構築覚え書き: メールサーバ構築アーカイブ
- メールサーバの設定(バーチャルメールボックス編):tech.ckme.co.jp
- サバカン日記+::postfixとdovecotでバーチャルドメイン(smtp-auth編)弐
- 認証方式について(PLAIN, CRAM-MD5, ...)
- http://wiki.dovecot.org/Authentication/Mechanisms
- https://fabicon.ru/tech/telco/e-mail/Ubuntu+Postfix+Dovecot+Clamav+Spamassasin-brief.php
Postfix
- http://www.postfix-jp.info/docs.html
- (postfix-jp:259) Re: IPv6 on Postfix
mynetworks = IPv4 アドレスブロック, [::1]/128, [IPv6 NLA2ブロック::]/48
- localhostのみから受け付けるときは以下の通り
mynetworks = 127.0.0.0/8, [::1]/128
- localhostのみから受け付けるときは以下の通り
backup server
- MXを複数記述しておき、メインのSMTPdが死んでいるときにメールを貯めておく
- ex)
- mail2.mitty.jp:/etc/postfix/main.cf (backup server)
(snip) relay_domains = /etc/postfix/relay_domains relay_transport = smtp:mail1.mitty.jp
- /etc/postfix/relay_domains
mitty.jp test.mitty.jp (snip)
- mail2.mitty.jp:/etc/postfix/main.cf (backup server)
open relay test
- telnet localhost 25 「以外」のIPで繋いで(localhostからの転送を拒否している場合を除く)、以下のような例でメール送信できたらOpen relayになっているので注意
HELO mitty.jp MAIL FROM: hoge@mitty.jp RCPT TO: fuga@example.org DATA From: hoge@mitty.jp Subject: test relay testmail . QUIT