Error "No package dkim-milter available" CentOS 5.8 [closed]

1

I can not install dkim-milter, I'm using CentOS 5.8 x64bit

  

[root @ server ~] # yum install dkim-milter
      Loaded plugins: fastestmirror, security
      Loading mirror speeds from cached hostfile
      * base: mirror.ubiquityservers.com
      * epel: fedora-epel.mirror.lstn.net
      * extras: centos.den.host-engine.com
      * rpmforge: mirror.nexcess.net
      * updates: mirror.sanctuaryhost.com
      Setting up Install Process
      No package dkim-milter available.
      Nothing to doa

How to solve?

    
asked by anonymous 16.06.2015 / 17:22

1 answer

1

WHAT IS DKIM

DomainKeys Identified Mail (DKIM) is an important authentication mechanism to help protect both e-mail receivers and forged e-mail and phishing senders. The DomainKeys Identified Mail (DKIM) system is an evolution of the DomainKeys system initially developed by Yahoo as a mechanism for an e-mail to be validated by a recipient, proving unequivocally that its origin is actually that which appears in the headers of the email.

INSTALLATION

1 - ENABLE EPEL REPOSITORY

  

# rpm -Uvh link

2 - TEST EPEL REPOSITORY

  

# yum --disablerepo = * --enablerepo = epel list all

3 - INSTALLING DKIM-MILTER

  

% sudo yum -enablerepo = epel install -y dkim-milter

    
09.12.2015 / 12:07