Follow
Ubuntu Linux

How to Install Dovecot on Ubuntu 24.04

Richard
Written by
Richard
Mar 17, 2025 Updated Mar 20, 2026 3 min read
How to Install Dovecot on Ubuntu 24.04
How to Install Dovecot on Ubuntu 24.04

You install Dovecot on Ubuntu 24.04 to create a robust, open-source mail server capable of handling IMAP and POP3 protocols.

Dovecot acts as the essential component for email retrieval, enabling your email clients to access messages using standard protocols like IMAP and POP3.

This tutorial specifically guides you through installing and configuring Dovecot on Ubuntu 24.04 LTS, ensuring secure and dependable email access for your users.

⚡ Quick Answer

Install Dovecot on Ubuntu 24.04 using the command `sudo apt install dovecot-core dovecot-pop3d dovecot-imapd`. After installation, configure Dovecot by editing `dovecot.conf`, `10-auth.conf`, `10-mail.conf`, and `10-master.conf` to enable desired authentication mechanisms and mail locations. Finally, restart Dovecot with `sudo systemctl restart dovecot`.

Install Dovecot

You can use Dovecot with many SMTP mail servers. For this post, we will set up Dovecot to work with Postfix MTA with SASL function.

If you haven’t installed Postfix yet, check out this guide to learn how to do it.

How to install Postfix on Ubuntu

When you are ready to install Postfix, run the command below.

🐧Bash / Shell
sudo apt update
sudo apt install dovecot-core dovecot-pop3d dovecot-imapd

Configure Dovecot

After installing Dovecot, you will find its main configuration file at [/etc/dovecot/dovecot.conf].

Open the configuration file. You’ll need to uncomment (remove the comment symbols from) the highlighted lines. Then, save and exit the file.

🐧Bash / Shell
sudo nano /etc/dovecot/dovecot.conf

Uncomment the lines highlighted.

💻Code
# A comma separated list of IPs or hosts where to listen in for connections. 
# "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.

listen = *, ::

Save and exit.

Next, open the file auth.conf below.

🐧Bash / Shell
sudo nano /etc/dovecot/conf.d/10-auth.conf

Uncomment the highlighted lines.

💻Code
# Disable LOGIN command and all other plaintext authentications unless
# SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
# matches the local IP (ie. you're connecting from the same computer), the
# connection is considered secure and plaintext authentication is allowed.

disable_plaintext_auth = no

# Space separated list of wanted authentication mechanisms:
# plain login digest-md5 cram-md5 ntlm rpa apop anonymous gssapi otp
# gss-spnego
# NOTE: See also disable_plaintext_auth setting.

auth_mechanisms = plain login

Save and exit.

Next, open the mail.conf file.

🐧Bash / Shell
sudo nano /etc/dovecot/conf.d/10-mail.conf

Change the highlighted line.

💻Code
#
# <doc/wiki/MailLocation.txt>

mail_location = maildir:~/Maildir

Save and exit.

Next, open the master.conf file.

🐧Bash / Shell
sudo nano  /etc/dovecot/conf.d/10-master.conf

On lines 110 – 112, uncomment the section below.

💻Code
  # Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
mode = 0666
user = postfix
group = postfix
}

Save and exit the file.

Then, restart Dovecot.

🐧Bash / Shell
sudo systemctl restart dovecot

That should do it!

Conclusion:

So, getting Dovecot set up on Ubuntu 24.04 is a manageable process. Here’s what you need to remember:

  • Dovecot is a reliable open-source IMAP and POP3 email server, ensuring secure email retrieval.
  • It integrates seamlessly with popular mail delivery agents like Postfix or Exim.
  • The installation process involves simple commands to get Dovecot up and running alongside Postfix.
  • Configuration files such as dovecot.conf, 10-auth.conf, 10-mail.conf, and 10-master.conf are essential for tailoring Dovecot to your specific needs.
  • Remember to restart Dovecot after making changes to apply the new settings.

With Dovecot adequately set up, you can enjoy efficient email management on your Ubuntu server.

What email servers are available with Ubuntu?

Email Server Comparison

Was this guide helpful?

0% of readers found this helpful (1 votes)

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04
How to Change Screen Brightness in Ubuntu Linux
Ubuntu Linux How to Change Screen Brightness in Ubuntu Linux
How to Install Prospect Mail on Ubuntu 24.04
Ubuntu Linux How to Install Prospect Mail on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *