我试图使用MBSync将本地Maildir++文件夹(dovecot邮件数据)同步到远程Maildir++邮箱中。在一般情况下,收件箱的子项目被忽略。
配置如下所示:
MaildirStore a-local
Subfolders Maildir++
Inbox /var/kunden/mail/a/foo@bar.com
IMAPAccount a
Host ***
User ***
Pass ***
SSLType IMAPS
CertificateFile ~/mail/cert
IMAPStore a-remote
Account a
Channel a
Master :a-local:
Slave :a-remote:
Patterns *
SyncState ~/mail/a-imap-transferOuput看起来是这样的(为什么收件箱被忽略了?!)
pattern '*' (effective '*'): Path, no INBOX Maildir warning: ignoring
INBOX in /var/kunden/mail/a/foo@bar.com/ Opening slave
store a-remote... Resolving ***... ok Connecting to
*** (***:993)... Connection is now encrypted Logging in... Authenticating with SASL mechanism PLAIN... pattern '*'
(effective '*'): Path, no INBOX Opening master box INBOX... Opening
slave box INBOX...文件系统中的文件夹结构如下所示:
.Drafts
'.Entw&APw-rfe'
.Gesendet
.INBOX.abizeitung
.INBOX.Bachelorarbeit
.INBOX.bestellungen
.INBOX.dav最后4个没有同步。有什么暗示吗?
发布于 2023-05-12 06:23:11
来自手册:Note that INBOX is not matched by wildcards, unless it lives under Path.。因此,您必须添加第二个模式.INBOX.*。
https://unix.stackexchange.com/questions/576726
复制相似问题