Yum is not installing msmtp

4.9k Views Asked by At

I am trying to install msmtp on my server CentOS 6.6. but yum says the package is not found. I am using the default configuration for the yum came with the CentOS install. how do I solve this?

1

There are 1 best solutions below

5
On BEST ANSWER

msmtp is not available through standard Centos repo. You'll need to install Epel repo first, pick one depending on your OS architecture.

For x86_64 system:

rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

For x86 system:

rpm -ivh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

You should be able to install msmtp now with:

yum install msmtp

Hope this helps,

Deeh