使用 OfflineIMAP 将邮件迁移到新服务器 - 未复制点文件夹

使用 OfflineIMAP 将邮件迁移到新服务器 - 未复制点文件夹

我正在尝试使用 OfflineIMAP 将邮件从服务器迁移到新服务器。

我的配置如下:

[general]
accounts = TestAccount
ui = noninteractive.Basic

[Account TestAccount]
localrepository = TestAccountSource
remoterepository = TestAccountDestination
maxsyncaccounts = 3
maxconnections = 3

[Repository TestAccountSource]
type = IMAP
remotehost = localhost
remoteuser = [email protected]
remotepass = password

[Repository TestAccountDestination]
type = IMAP
remotehost = new.machine.com
remoteuser = [email protected]
remotepass = password
ssl = yes

当我在“旧”服务器上运行此命令时,同步开始并且正在复制邮件。但是目录不会被复制到新机器:

offlineimap -c /path/to/my/config

原始目录如下所示:

Chats
Contacts
courierimapkeywords
courierimapsubscribed
courierimapuiddb
cur
Drafts
Emailed Contacts
INBOX
Junk
new
Notes
Sent
tmp
.Subdir
.Subdir.SubSubdir1
.Subdir.SubSubdir2
.Subdir.SubSubdir3
.Subdir.SubSubdir4

收件箱中的所有邮件都已正确同步,但目录.SubDir(包括其子目录)永远不会在新邮件服务器上结束。

PS 旧邮件服务器使用 courier,新邮件服务器使用 Zimbra。

相关内容