Pages

Welcome to My Blog

This is to share my IT experience with friends all around the world.
I have been working in Linux Fedora Systems for more than 8 years. Its fun to share knowledge and learn..
As everyone knows when a problem arises in your systems "googling" is the way that many depend on..

All the posts here are my working experiences during my working life.. So you can count on it..

I have added the references where I got help in solving IT issues


Monday, August 5, 2019

Dovecot issue in InBOX - CentOS7 Dovecot



I was configuring a mail server in CentOS7 environment with Postfix and Dovecot. When configuring Dovecot to deliver mails to the users, I noticed the following error in the mail log and user was not able to get mails in the INBOX.

dovecot: pop3(<user>@<domain>): namespace configuration error: inbox=yes namespace missing top=0/0, retr=0/0, del=0/0, size=0

According to the reviews, the error was with the name space definitions in /etc/dovecot/conf.d/15-mailboxes.conf where inbox was not enabled. I have added inbox=yes under the namespace inbox{ definition.

Please find the added line in the below content

namespace inbox {
  inbox=yes #This line was added
  # These mailboxes are widely used and could perhaps be created automatically:
  mailbox Drafts {
    special_use = \Drafts
  }
  mailbox Junk {
    special_use = \Junk
  }
  mailbox Trash {
    special_use = \Trash
  }


 Good Reference:

https://dwaves.org/2018/08/14/centos7-dovecot-exim-error-user-userdomain-com-initialization-failed-namespace-configuration-error-inboxyes-namespace-missing-error-invalid-user-settings/