ダウンロード

http://www.eudora.com/products/unsupported/qpopper/index.html

インストール

$./configure
$make
#make install
※-ERR Password supplied for "***" is incorrect.等と表示され認証できない場合は./configure --with-pam=pop3 とオプションを付けてみる。
(./configure時にpamが有効かどうか確認)

inetdへの反映

#vi /etc/inet/pop3.conf
---
pop3	stream	tcp	nowait	root	/usr/local/sbin/popper	/usr/local/sbin/popper -s -d -t /var/log/qpopper.log
---
# inetconv -f -i /etc/inet/pop3.conf

動作確認

$telnet localhost 110
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
+OK Qpopper (version 4.0.13) at box.send.test starting.
user hama
+OK Password required for hama.
pass xxxxxxxx
+OK hama has 1 visible message (0 hidden) in 1616 octets.
stat(受信しているメールの件数とバイト数)
+OK 1 1616
list(受信しているメールの番号とバイト数,番号付きで指定可)
+OK 1 visible messages (1616 octets)
1 1616
.
retr 1(指定したメッセージ番号のデータを受信)
+OK 1616 octets
Received: ・・・・・・・・・・・・・・・・・・・・
・・・・・・・・・・・・・・・・・・・・・・
.
dele 1(指定したメッセージ番号のデータを削除)
+OK Message 1 has been deleted.
quit
+OK Pop server at box.send.test signing off.
Connection to localhost closed by foreign host.