我已经设置了一个绑定到端口 25 的 postfix 中继 docker 容器。我希望能够使用mail
主机 CLI 中的命令,但每次我mailutils
通过apt
它安装时postfix
也会安装。
如何安装才能mailutils
直接访问mail
命令而无需安装postfix
?
答案1
apt update
apt purge postfix mailutils -y
apt autoremove -y
rm /etc/postfix/ -R
reboot
apt install mailutils sendmail -y
apt purge postfix -y
apt autoremove -y
systemctl stop sendmail
systemctl disable sendmail
reboot