How To Install uw-imap on CentOS 7

In this tutorial we learn how to install uw-imap on CentOS 7. uw-imap is UW Server daemons for IMAP and POP network mail protocols

Introduction

In this tutorial we learn how to install uw-imap on CentOS 7.

What is uw-imap

The uw-imap package provides UW server daemons for both the IMAP (Internet Message Access Protocol) and POP (Post Office Protocol) mail access protocols. The POP protocol uses a “post office” machine to collect mail for users and allows users to download their mail to their local machine for reading. The IMAP protocol allows a user to read mail on a remote machine without downloading it to their local machine.

We can use yum or dnf to install uw-imap on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install uw-imap.

Install uw-imap on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install uw-imap using yum by running the following command:

sudo yum -y install uw-imap

Install uw-imap on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install uw-imap using dnf by running the following command:

sudo dnf -y install uw-imap

How To Uninstall uw-imap on CentOS 7

To uninstall only the uw-imap package we can use the following command:

sudo dnf remove uw-imap

References

Summary

In this tutorial we learn how to install uw-imap on CentOS 7 using yum and dnf.