포트 25에 바인딩된 postfix 릴레이 도커 컨테이너를 설정했습니다. 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