FreeBSD 研习课程讲义
Prev POP3 伺服器 Next

 

POP3 伺服器

popper(Freebsd最常用...但我们不用...)

【注解】以前只要将/etc/inetd.conf 中 pop3 的注解打开就可以了。现行版本需要另外自行安装 popper (/usr/ports/mail/popper),并把pop3打开即可。

 

cucipop

路径:/usr/ports/mail/cucipop/

安装指令:

make install
make clean

执行档:/usr/local/libexec/cucipop

开机自动执行:

1.建立档案:/usr/local/etc/rc.d/cucipop.sh (自己新增档案)

内容如下:

/usr/local/libexec/cucipop -YaSE 2M (此叁数表示超过两个月的信砍之)

2.变更权限:

chmod 700 cucipop.sh

3.手动启动:

/usr/local/etc/rc.d/cucipop.sh

【注解】cucipop 亦可采用inetd 方式启动 在/etc/inetd.conf 加入这一行

pop3 stream tcp nowait root /usr/local/libexec/cucipop cucipop -YaSE 2M

 


Prev Home Next
设定 sendmail UP