Got it working!
For everyone else, here was my command to do a Zimbra -> Zimbra email replication using imapsync and AUTH PLAIN so I can connect as the admin user without needing to know each users password:
imapsync --host1 source.server.com --user1 username --authuser1 adminusername --password1 adminpassword --ssl1 --port1 993 --host2 destination.server.com --user2 username --password2 password --authmech2 PLAIN --ssl2 --port2 993 --syncinternaldates --subscribe --subscribed
In this scenario, source.server.com is my live server with all the email I want replicated, and destination.server.com is my backup server. I have all the accounts replicated on destination.server.com, but all the passwords are set to abc123. |