Ubuntu 20.04에서 mailutils에 더 이상 Postfix가 포함되지 않는 이유는 무엇입니까?

Ubuntu 20.04에서 mailutils에 더 이상 Postfix가 포함되지 않는 이유는 무엇입니까?

우분투 20.04에 postfix를 설치하려고 하는데 postfix 구성 화면이 시작되지 않고 오류 메시지가 없습니다:

user@leo:~$ sudo apt-get install mailutils
Reading package lists... Done
Building dependency tree       
Reading state information... Done
mailutils is already the newest version (1:3.7-2.1).
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.

user@leo:~$ sudo dpkg-reconfigure postfix
dpkg-query: package 'postfix' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files.
/usr/sbin/dpkg-reconfigure: postfix is not installed

mailutils에는 더 이상 postfix가 포함되어 있지 않습니까?

답변1

우분투는 전혀 변하지 않았습니다. 여전히 mailutils의 종속성으로 postfix를 설치합니다.아직 다른 메일 전송 에이전트가 설치되어 있지 않은 경우.

그만큼패키지종속성으로 나열됩니다.

postfix에서 제공하는 default-mta
가상 패키지
또는 postfix에서 제공하는 mail-transport-agent
가상 패키지[패키지 제공 15개 표시]

postfix를 나열된 패키지 중 하나로 교체했기 때문에 설치되지 않습니다. 정말로 postfix를 원한다면 postfix를 설치하기 전에 다른 MTA를 제거해야 합니다.

답변2

분명히 다음과 같이 쉬웠습니다.apt install postfix

관련 정보