关闭服务器上的电子邮件功能

关闭服务器上的电子邮件功能

我有一个运行 Ubuntu 的网络服务器,并且我知道我已经在其上安装并配置了 Postfix,但我想卸载它,并且我还想确保 sendmail 不会自行安装。

当我尝试使用 apt-get remove postfix 时,它告诉我 postfix 将被删除,但它还告诉我它将安装 sendmail。

我的问题是,该服务器上运行的大多数网站都在使用 Wordpress,而我从来没有时间更新它们,而且它们总是被试图发送垃圾邮件的小型 php 脚本感染。

所以我只想关闭/禁用服务器的所有邮件功能,因为没有任何网站包含联系表格或任何其他使用邮件系统的东西。

有什么想法吗?这可能吗?

答案1

您不需要卸载postfix。只需关闭 tufn 服务并从 sturtup 禁用它即可。

首先列出所有服务

sudo service --status-all

如果您看到+上述内容,则表示postfix正在运行。使用以下命令关闭它们:

sudo service postfix stop

要禁用 postfix 并防止其在下次重启时启动,请按以下方式禁用它。如果您Ubuntu 15.04使用systemctl

sudo systemctl disable postfix

如果您使用较旧的Ubuntu删除,请service从“/etc/init/

sudo rm /etc/init/postfix

或使用命令

sudo update-rc.d postfix disable

相关内容