postfix 없이 Mail 또는 Mailutils 설치

postfix 없이 Mail 또는 Mailutils 설치

포트 25에 바인딩된 postfix 릴레이 도커 컨테이너를 설정했습니다. mail호스트 CLI의 명령을 사용할 수 있으면서도 이를 mailutils통해 apt설치할 때마다 postfix설치하고 싶습니다.

설치하지 않고도 명령에 직접 mailutils액세스 할 수 있도록 어떻게 설치합니까 ?mailpostfix

답변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

관련 정보