Hi.
Now I have the mail server working IMAP mode. I’m interested in configure the mail server in order to set default mail folders (like Inbox, Trash and Sent folders) per mail account.
Is there a way or command in Ubuntu to deal with it? Thanks in advance.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Open /etc/dovecot/conf.d/20-imap.conf There you will find the protocol imap section and change the mail_plugins line to mail_plugins = $mail_plugins autocreate Then add the following at the end of the file.
Try this
Open /etc/dovecot/conf.d/20-imap.conf
mail_plugins = $mail_plugins autocreate Then add the following at the end of the file. plugin { autocreate = Trash autocreate2 = Junk autocreate3 = Drafts autocreate4 = Sent autosubscribe = Trash autosubscribe2 = Junk autosubscribe3 = Drafts autosubscribe4 = Sent }
Thank you very much, @sianios. It worked like a charm!!! Best regards from San Luis Potosi, Mexico.