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.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
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.