nerdexam
Red_Hat

RH302 · Question #149

RH302 Question #149: Real Exam Question with Answer & Explanation

IMAP is a very usefully protocol, but it lacks encryption. The dovecot package distributed with RHEL includes the ability to use IMAP over SSL. This requires the creation of a PEM format certificate. 1. cd /etc/pki/tls/ and remove the cert.pem. 2. Go the /etc/pki/tls/certs then u

Question

User jeff should able to access the mail using IMAP over SSL

Explanation

IMAP is a very usefully protocol, but it lacks encryption. The dovecot package distributed with RHEL includes the ability to use IMAP over SSL. This requires the creation of a PEM format certificate.

  1. cd /etc/pki/tls/ and remove the cert.pem.
  2. Go the /etc/pki/tls/certs then use:
  3. make dovecot.pem : Which generates the dovecot.pem certificate by reading Makefile
  4. Enable the imaps with Certificate and Key file protocol from /etc/dovecot.conf vi /etc/dovecot.conf protocols = imap imaps ssl_cert_file = /etc/pki/dovecot/certs/dovecot.pem ssl_key_file = /etc/pki/dovecot/private/dovecot.pem
  5. service dovecot restart : Restart the Dovecot service

Community Discussion

No community discussion yet for this question.

Full RH302 Practice