Apt

在沒有後綴的情況下安裝 Mail 或 Mailutils

  • February 15, 2022

我已經設置了一個綁定到埠 25 的 postfix 中繼 docker 容器。我希望能夠使用mail來自主機 CLI 的命令,但每次我mailutils通過apt它安裝postfix時也會安裝。

如何安裝 JUSTmailutils以便mail無需安裝即可訪問命令postfix

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

引用自:https://unix.stackexchange.com/questions/582741