|
sendmail -v -bi //调试启动启动。
Warning: Option: AuthMechanisms requires SASL support (-DSASL)
Warning: Option: AuthOptions requires SASL support (-DSASL)
/etc/aliases: 0 aliases, longest 0 bytes, 0 bytes total
总是出现说要认证要认证。
到底是为什么呢?
是路径不对还是什么原因呢?
系统本没有安装POP3协议。
装了以后,在/etc/xinetd.d目录下多了几个文件,说明装好了。
编辑ipop3
vi ipop3
-----------------------------------
# default: off
# description: The POP3 service allows remote users to access their mail \
# using an POP3 client such as Netscape Communicator, mutt, \
# or fetchmail.
service pop3
{
socket_type = stream
wait = no
user = root
server = /usr/sbin/ipop3d
log_on_success += HOST DURATION
log_on_failure += HOST
disable = on
}
-----------------------------------
就只修改了disable = on (默认的为yes)
然后重启服务/etc.init.d/xinetd restart
/etc/init.d/xinetd restart
Stopping xinetd: [ OK ]
Starting xinetd: [ OK ]
查看chkconfig --list
看到 ipop3: on
可是就是reboot之后,就是没有开放110端口。端口都没有打开。肯定不是防火墙问题。防火墙关了。
这是这么回事呢?怎么解决? |
|