Sendmail是CentOS最重要的邮件传输代理程序。理解电子邮件的工作模式是非常重要的。一般情况下,我们把电子邮件程序分解成用户代理,传输代理和投递代理。 关闭Sendmail服务具体命令实现如下:
(1)[root@sample ~]# /etc/rc.d/init.d/sendmail stop ← 关闭sendmail服务 (2)[root@sample ~]# chkconfig sendmail off ← 关闭sendmail自启动
(3)[root@sample ~]# chkconfig --list sendmail ← 确认sendmail自启动已被关闭(都为off就OK) |