I'm able to install msmtp
just find on Ubuntu 18.04 with: apt install msmtp msmtp-mta ca-certificates
, however I'm not finding Minimal SMTP server (msmtpd)
anywhere on the filesystem. It also does not appear to be available within apt search
How can I install this service on Ubuntu 180.04 servers?
clamsmtpd
is for scanning emails for viruses (https://manpages.debian.org/testing/clamsmtp/clamsmtpd.8.en.html)... – ylluminate Oct 20 '19 at 16:30dpkg -l msmtp msmtp-mta ca-certificates ;for i in msmtp msmtp-mta ca-certificates ; do dpkg -L $i; done
will tell you about the package contents. – waltinator Oct 20 '19 at 17:05apt-file
and then after looking closer at the package's version infoapt show
, it is quite outdated andmsmtpd
is simply missing everywhere, so I believe I must resort to building it from scratch and thus asked this question. – ylluminate Oct 20 '19 at 17:27