如何在 imap maildir postfix 和 dovecot 中将文件夹分隔符设置为“/”而不是点“。”

如何在 imap maildir postfix 和 dovecot 中将文件夹分隔符设置为“/”而不是点“。”

问题已经在标题中了。我想用 maildir 设置 dovecot 和 postfix,但我不想用点“。”作为文件夹分隔符。我喜欢使用像“/”这样的文件夹系统

Maildir/folder/
Maildir/folder/subfolder/

我找到了这个 :https://doc.dovecot.org/configuration_manual/mail_location/Maildir/

mail_location = maildir:~/Maildir:LAYOUT=fs

我还相应地设置了命名空间收件箱

mail_location = maildir:~/Maildir:LAYOUT=fs
namespace {
  inbox = yes
  prefix = INBOX/
  separator = /
  subscriptions = no
}

我使用了此设置,但 dovecot 仍使用点。这里有人有其他想法吗?我是否忽略了其他设置?

答案1

我认为你必须将其设置separator转义字符串,如文档所述

在您的示例中:

namespace {
  […]
  separator = "\\"
  […]
}

相关内容