Mail System | Postfix | SMTP-Auth | SMTP-Auth+TLS | SMTP+Virtual | Qpopper | Qpopper/SSL | Courier-IMAP | FetchMail | Procmail | WebMail | AntiVirus | Relay Mail |
・当面、家庭内からしか送受信しない。(但し、将来は、外部からの利用も考えられるので考慮しておく。)
・使用しているメーラは、Outlook Expressである。
となり、自ずと使用するプロトコルはPOP3になってしまいます。POP3は、暗証番号が平文で流れてしまいますが、家系内でしかアクセスしないため問題となることはありません。調べてみると、POP3サーバとしては,米QUALCOMMから無償配布されているqpopperがデファクトスタンダード的に使われており、Postfixとの連携ならデフォルトで動くこと、また、APOPにも対応しており、他のソフトと連携してPOP before SMTPへの発展性もあるようなので、これを採用しました。
$ cd /usr/local/src
$ tar zxfv qpopper4.0.4.tar.gz
$ cd qpopper4.0.4
$ ./configure
$ make
$ cd popper
$ su
# cp popper /usr/local/sbin
service pop3 { disable = no socket_type = stream wait = no user = root server = /usr/local/sbin/popper server_args = -s -R only_from = 127.0.0.1 172.16.0.0/12 192.168.1.0/24 }
作成できたら、 xinetd を下記により再起動すればOK。これで、メールが受信できるはずです。
Mail System | Postfix | SMTP-Auth | SMTP-Auth+TLS | SMTP+Virtual | Qpopper | Qpopper/SSL | Courier-IMAP | FetchMail | Procmail | WebMail | AntiVirus | Relay Mail |