This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
cервер_pop3_popper [2011/02/27 18:44] val removed |
— (current) | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Cервер POP3 popper ====== | ||
| - | ===== FreeBSD ===== | ||
| - | <code> | ||
| - | [gate:~ ] # pkg_add -r popper | ||
| - | |||
| - | [gate:~ ] # cat /etc/inetd.conf | ||
| - | ... | ||
| - | pop3 stream tcp nowait root /usr/local/libexec/popper popper | ||
| - | ... | ||
| - | |||
| - | [gate:~ ] # cat /etc/rc.conf | ||
| - | ... | ||
| - | inetd_enable=”YES” | ||
| - | ... | ||
| - | |||
| - | [gate:~ ] # /etc/rc.d/inetd start | ||
| - | </code> | ||
| - | |||
| - | ===== Ubuntu ===== | ||
| - | <code> | ||
| - | root@gate:~# apt-get install openbsd-inetd | ||
| - | |||
| - | root@gate:~# apt-get install qpopper | ||
| - | |||
| - | root@gate:~# grep pop /etc/inetd.conf | ||
| - | pop-3 stream tcp nowait root /usr/sbin/tcpd /usr/sbin/in.qpopper -f /etc/qpopper.conf | ||
| - | |||
| - | root@gate:~# /etc/init.d/openbsd-inetd start | ||
| - | </code> | ||