• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved IMAP auto select default folders on server

Jelle G

New Pleskian
Hi,

When a mailaddress is created for a domain and I want to add it to my iPhone using IMAP, the default folders are not set correct by default.

I manually need to select that drafts, sent, deleted, archive mailbox should be On the server and not local on my iPhone.

Is there a way to set these folders by default to On the server?
This so that all customers are set correctly by default and all actions are stored on server?
 
Hi Jelle G,
I use Dovecot on all my servers, and add an extra file in /etc/dovecot/conf.d...

/etc/dovecot/conf.d/15-my-mailboxes.conf

Contents...
Code:
##
## Mailbox Settings
##

namespace inbox {
  mailbox Drafts {
  special_use = \Drafts
  auto=subscribe
  }
  mailbox Trash {
    special_use = \Trash
    auto=subscribe
  }
  mailbox Sent {
    special_use = \Sent
    auto=subscribe
  }
  mailbox "Sent Messages" {
    special_use = \Sent
  }
}

I hope that helps.
Kind regards

Lloyd
 
Hi Lloyd,

Thanks for your reply!

I just only need to create an extra file like /etc/dovecot/conf.d/15-my-mailboxes.conf and add that specific content?
That will do the trick? :)
 
Hi Lloyd,

Thanks for your reply!

I just only need to create an extra file like /etc/dovecot/conf.d/15-my-mailboxes.conf and add that specific content?
That will do the trick? :)

Yeah that's right, it did with outlook 2013 anyway.
Kind regards

Lloyd
 
That's fantastic info, @Lloyd_mcse! I can write off item #3 from my list of "Plesk issues": it was a pain in the neck having to access with RoundCube every newly created mailbox to have folders created...

What I wonder is why (oh, why!!??) this is not part of the default Plesk installation...
 
Hi Lloyd,

I know this is an old post but it is very valuable, thanks.
The Plesk solution to stay with Courier-IMAP comparability is a problem for many new devices so I changed as you suggested and it works on Plesk 17.8.

The only problem I now have is that Roundcube does not automatically set the folder "mappings" correctly for :

- Drafts
- Sent
- Junk
- Trash
- etc, you need to login and go to Manager Folders > Preferences > Special Folders and then set:

Drafts - Drafts
Sent - Sent
Junk - Junk
Trash - Trash

Do you or anyone else have a solution to fix this and have it happen automatically when a mailbox is created and a user logs in?

Thanks,

Ryan
 
Back
Top