imap-backup
Backup, restore and migrate email accounts.
Quick Start
brew install imap-backup # for macOS
gem install imap-backup --no-document # for Linux
imap-backup setup
imap-backupModes
There are two types of backups:
- Keep all (the default) - progressively saves a local copy of all emails,
- Mirror - adds and deletes emails from the local copy to keep it up to date with the account.
What You Can Do with a Backup
- Copy - copy messages from one account to another, tracking copies in order to avoid duplicates.
- Restore - push the local copy back to the original account.
See below for a full list of commands.
Installation
You'll need to choose a path on your computer where your backups will be saved,
we'll use ./my-data here.
If you have just one account, you can do as follows
docker run \
--volume ./my-data:/data \
--dns 8.8.8.8 \
ghcr.io/joeyates/imap-backup:latest \
imap-backup single backup \
--email me@example.com \
--password mysecret \
--server imap.example.com \
--path /data/me_example.comPodman will work exactly the same.
Notes:
- If you're using Docker, add
--user $(id -u):$(id -g)so that the files created by the container are owned by you and not by root, - Pass imap-backup the
--password-environment-variable=VARIABLE_NAMEor--password-file=FILEoption to avoid having your password in the command line history:
docker run --env THE_PASSWORD=$THE_PASSWORD \
... \
imap-backup single backup \
--password-environment-variable=THE_PASSWORD \
...or
docker run \
... \
imap-backup single backup \
--password-file=/data/password.txt \
...If you have multiple accounts, you can create a configuration file.
You'll need to choose a path on your computer where your configuration will be saved,
we'll use ./my-config here.
First, run the menu-driven setup program to configure your accounts
docker run \
--volume ./my-config:/config \
--volume ./my-data:/data \
--dns 8.8.8.8 \
--tty \
--interactive \
ghcr.io/joeyates/imap-backup:latest \
imap-backup setup \
--config /config/imap-backup.jsonThen, run the backup
docker run \
--volume ./my-config:/config \
--volume ./my-data:/data \
--dns 8.8.8.8 \
ghcr.io/joeyates/imap-backup:latest \
imap-backup backup \
--config /config/imap-backup.jsonIf you have Homebrew, do this:
brew install imap-backupgem install imap-backup --no-documentIf that doesn't work, see the detailed installation instructions.
If you want to use imap-backup directly from the source code, see here.
Setup
Normally you will want to backup a number of email accounts. Doing so requires the creation of a config file.
You do this via a menu-driven command line program:
Run:
imap-backup setupAs an alternative, if you only want to backup a single account,
you can pass all the necessary parameters directly to the single backup command
(see the single backup docs).
GMail
To use imap-backup with GMail, Office 365 and other services that require OAuth2 authentication, you can use email-oauth2-proxy. See this blog post about using imap-backup with email-oauth2-proxy.
Backup
Manually, from the command line:
imap-backupAlternatively, add it to your crontab.
Backups can also be inspected, for example via local show
and exported via utils export-to-thunderbird.
Commands
backupcopylocal accountslocal checklocal folderslocal listlocal showremote foldersrestoresetupsingle backuputils export-to-thunderbirdutils ignore-history
For a full list of available commands, run
imap-backup helpFor more information about a command, run
imap-backup help COMMANDPerformance
There are a couple of performance tweaks that you can use to improve backup speed.
These are activated via two settings:
- Global setting "Delay download writes",
- Account setting "Multi-fetch size".
See the performance document for more information.
Troubleshooting
If you have problems:
- ensure that you have the latest release,
- run
imap-backupwith the-vor--verboseparameter.
Development
See the Developer Documentation.