我尝试找到 imapsync 选项和参数,以从 zimbra 7.1.4 同步和删除目标 zimbra 8.7.7 邮箱上的旧电子邮件。到目前为止,2 次测试已成功,但还有一个名为“Folder”的文件夹,其中包含联系人文件。
下面是 shell 脚本中的命令及其使用的选项:
host1="IP-source"
host2="IP-destination"
username="user@domain"
admin_account_password="zimbra-admin-password"
imapsync \
--host1 "$host1" --host2 "$host2" --useuid --delete2 \
--user1 "$username" --authuser1 admin \
--ssl1 --authmech1 PLAIN \
--password1 "$admin_account_password" \
--user2 "$username" --authuser2 admin \
--ssl2 --authmech2 PLAIN \
--password2 "$admin_account_password" \
--maxsize 52428800 --buffersize 8192000 \
--nofoldersizes --nosyncacls --subscribe --syncinternaldates \
--authmech2 PLAIN \
--exclude '(?i)\b(Junk|Spam|Trash)\b' \
--regextrans2 "s,&AAo-|&AA0ACg-|&AA0ACgANAAo-(?=/|$),,g" \
--regexflag 's/\\\\(?!Answered|Flagged|Deleted|Seen|Recent|Draft)[^\s]*\s*//ig' --debugflags \
--regextrans2 's,:,-,g' \
--regextrans2 's,\",'\'',g' \
--regextrans2 's,\s+(?=/|$),,g' \
--regextrans2 "s,^(Briefcase|Calendar|Contacts|Emailed Contacts|Notebook|Tasks)(?=/|$), $1 Folder,ig" \
--regextrans2 's,\",-,g' \
CentOS 7 上的 imapsync 1.727
那么,是什么导致该文件夹出现以及如何不让它出现呢?
答案1
看来我需要排除 imapsync 看到的电子邮件联系人和联系人文件夹。
差异
16c
--exclude '(?i)\b(Junk|Spam|Trash|Emailed \Contacts|Contacts)\b' \
.