Displaying 2 results from an estimated 2 matches for "roskaposti".
2020 Jul 07
4
Dovecot Maildirs multi language
Hello,
I'm hosting a few customers on a dovecot Server. Most users speak german
and have german as their main language. I configured the IMAP Foldernames
in a Dovecot configuration file like this:
#####
root at srv04:~# cat /etc/dovecot/conf.d/105-mailboxes.conf
imap_capability = +XLIST
namespace inbox {
inbox = yes
location =
separator = /
mailbox "Entw?rfe" {
auto
2020 Jul 07
0
Dovecot Maildirs multi language
Hi,
yes, you can override these settings by returning variables from userdb.
for example can define:
namespace INBOX {
inbox = yes
location =
separator = /
mailbox Spam {
auto = suscribe
special_use = \Junk
hidden = yes
}
mailbox Roskaposti {
auto = subscribe
special_use = \Junk
hidden = yes
}
}
and then from userdb return:
mailbox/inbox/mailbox/Spam/hidden=no
or
mailbox/inbox/mailbox/Roskaposti/hidden=no
if to show the language specific Spam folder.
Sami
> On 7. Jul 2020, at 9.38, Luca M?ller <lucamueller037...