Bulk Transfer All E-mail from One Account to One other utilizing the CLI


If you end up ready the place you want to sync all emails from one account to a different, then you need to use the imapsync command-line device to bulk copy, or transfer the whole lot for you.

Step 1 – Get imapsync

You’ll want to get the imapsync device working regionally.

It may be discovered right here https://github.com/imapsync/imapsync

Alternatively, in case you are utilizing a Mac and have homebrew put in, then you definitely’re in luck!

Merely brew set up imapsync and also you’re prepared.

Step 2 – Allow imap on the accounts

By default, imap is usually disabled on the e-mail server. We’ll discover Gmail on this case to check a sync.

In Gmail, beneath Settings, discover Forwarding and POP/IMAP and make it possible for imap is enabled.

Additionally make it possible for Auto-Expunge is off, and choose Instantly delete the message eternally. Make it possible for Folder measurement limits will not be set.

Gmail imap settings

Step 3 – Configure your account creds

You will have the username and password for every account, so have them at hand!

Step 4 – Run the command!

Now you can run the device to switch all emails from account1 to account2.

Sync from host1 to host2 and delete after success on host1

This selection will help you routinely sync the whole lot in source_account (host1) to destination_acount (host2) and on profitable migration of electronic mail, it should delete the e-mail/s within the source_account.

This selection is nice in case you are migrating from 1 account to a different:

imapsync 
    --host1 imap.gmail.com --user1 [email protected] --password1 MyP@$$w0rd! 
    --delete1 
    --host2 imap.gmail.com --user2 [email protected] --password2 MyP@$$w0rd!

Sync from host1 to host2 with out deleting something

For those who don’t wish to delete any electronic mail/s in your source_account (host1) after profitable electronic mail transfers, then you may merely omit the --delete1 flag, as follows:

imapsync 
    --host1 imap.gmail.com --user1 [email protected] --password1 MyP@$$w0rd! 
    --delete1 
    --host2 imap.gmail.com --user2 [email protected] --password2 MyP@$$w0rd!

Leave a Reply