Issue
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?
Solution
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
Answered By - Deeh Answer Checked By - David Goodson (WPSolving Volunteer)