• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Dovecot/Postfix IMAP folder ".Spam" needs to be ".Trash"(RFC-6154)

Rolf

New Pleskian
Hello,

for use with newer versions of IMAP mail clients (Outlook 2013, Applemail, Thunderbird) RFC 6154 / Special-Use describes a method where server and client negotiate which folders to use so there is no need to manually subscribe and match them.
Plesk 12.0.18 Update #43 with Dovecot/Postfix installed needs the following file to be added:

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

namespace inbox {
#mailbox name {
# special_use = \Drafts \Junk \Sent \Trash \Archive
#}
mailbox Drafts {
special_use = \Drafts
auto=subscribe
}
mailbox Junk {
special_use = \Junk
auto=subscribe
}
mailbox Trash {
special_use = \Trash
auto=subscribe
}
mailbox Sent {
special_use = \Sent
auto=subscribe
}
mailbox "Sent Messages" {
special_use = \Sent
}
mailbox Archive {
special_use = \Archive
auto=subscribe
}
# mailbox "Archives" {
# special_use = \Archive
# auto=no
# }
}

This looks fine, but there still is one issue: with a new mailbox the "Spam" directory is beeing created. This needs to be renamed to "Junk" to make a perfect client view.

How can this be archieved without loosing Spamassassin to funktion properly.

Thanks in advance,

-Rolf
 
No comments?
Is nobody using IMAP? Nobody wonders about the need to manually subscribe to the correct folders?
 
Back
Top