• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Question Translate IMAP folders in Outlook

Paul Hermans

Basic Pleskian
When we configure a mail account in Plesk the default IMAP folders are as follows:
  • Drafts
  • Sent
  • Spam
  • Trash
And when configuring this mail account in Microsoft Outlook, these folders are not translated to the language of the user.

Does anybody know how to translate these folders in Outlook?

Thanks!
 
There is no real solution to this. It's a client issue, not a server issue, but Outlook does not really provide a feature that can resolve this. The only switch they offer is /resetfoldernames, but that only re-matches the top level folder names to the system language. It does not change anything on IMAP folders.
 
Defining special use folders might work around this in your Dovecot config. Just change the names here:

Code:
mailbox Trash {
  auto = subscribe
  special_use = \Trash
}
mailbox Drafts {
  auto = subscribe
  special_use = \Drafts
}
mailbox Sent {
  auto = subscribe
  special_use = \Sent
}
mailbox Spam {
  auto = subscribe
  special_use = \Junk
}
mailbox Archive {
  auto = subscribe
  special_use = \Archive
}
 
Back
Top