BaGoMa User Manual

NAME

BaGoMa - A script to Backup Google Mail.

bAgOmA - A script to backup a bag o' mail.

SYNOPSIS

This software comes in two flavors:

  1. bagoma.py = the full-featured CLI version
  2. gui.pyw = a simple GUI wrapper for bagoma.py

Linux and Friends

bagoma.py [options] -e <Email>

Or, for the CLI-phobic:

gui.pyw

Windows

Download the zip file containing the stand-alone exe then, execute:

gui.exe

The more adventurous can try from a DOS shell:

bagoma.exe [options] -e <Email>

Alternatively, install python from python.org, CygWin, or ActiveState, then from a DOS or CygWin shell:

python bagoma.py [options] -e <Email>

WEB SITES

DESCRIPTION

BaGoMa backs-up and restores the contents of a GMail account. It can restore all the labels (folder structure), as well as the flags (seen/read, flagged) of a message. It differs from other similar solutions in a few important ways:

BaGoMa requires your GMail account to be IMAP accessible. Check the Mail Settings and make sure "Enable IMAP" is selected under the "Forwarding and POP/IMAP" tab. In the "Folder Size Limits" section on the same tab, make sure the following option is selected: "Do not limit the number of messages in an IMAP folder".

BaGoMa never deletes any email from your account. A restore simply compares the contents of your local backup with the contents of your GMail account, and uploads any messages missing from your GMail account. It never deletes messages from GMail to make it match the local backup.

Google sometimes imposes limits on how much data can be transfered from your account. If you run into such a limitation, just wait a few days and try the backup again. BaGoMa will pick up from where it left off. If the temporary loss of IMAP access is critical to you, think twice before using this script. As far as I'm aware, web access to your email should continue unimpeded even if IMAP access is blocked.

OPTIONS

-h, --help

show a help message and exit

-e EMAIL, --email=EMAIL

the email address to log in with (MANDATORY)

-p PWD, --pwd=PWD

the password to log in with (will prompt if missing)

-d BACKUPDIR, --dir=BACKUPDIR

the backup/restore directory [default: same as email]

-a ACTION, --action=ACTION

the action to perform: backup, restore, compact, printIndex or debug. [default: backup]

  • The function of the backup and restore actions should be obvious.

  • BaGoMa retains all backed up messages, even if they are no longer present on the GMail server during a subsequent backup. The compact action will compact the local storage by deleting all such messages.

  • The printIndex action displays all the meta-information BaGoMa operates on. This action is primarily intended for developers.

  • The "debug" action is also intended for developers and drops the user into an interactive python session.

--dryRun

When combined with the compact action, shows what files would be deleted without actually deleting them.

-s SERVER, --server=SERVER

the GMail server to use [default: imap.gmail.com]

--port=PORT

the IMAP port to use for GMail [default: 993]

-l LOGLEVEL, --log=LOGLEVEL

the console log level (DEBUG, INFO, WARNING, ERROR, CRITICAL) [default: WARNING]

-f LOGFILE, --file=LOGFILE

the log file (set it to 'off' to disable logging) [default: log.txt]

-c CONFIG_FILE, --config=CONFIG_FILE

the config file to use for options not specified on the command line. See below for more details.

--version

show the version number

INSTALL

There's nothing really to install. Once you unpack the downloaded package, you'll find the bagoma.py script in the top directory. On Linux you can run the script directly. On Windows, you'll need to install python first (if you don't already have it) from python.org, CygWin, or ActiveState, then from a DOS or CygWin shell:

python bagoma.py [options] -e <Email>

Man page can be viewed with:

man -l man/bagoma.1

For those that know what they're doing:

python setup.py install

CONFIG FILE

It's usually not a good idea to provide the password on the command line. When BaGoMa is used from a script (cron job), the recommended solution is to create a configuration file and use it to store the password. The configuration file uses the ini format with the email address as the section. For example:

[email_1@gmail.com]
pwd = pass1

[email_2@gmail.com]
pwd = pass2

LIMITATIONS

BaGoMa will NOT backup any of the following:

The IMAP protocol does not provide a trully unique ID for an email message (UIDVALIDITY + UID doesn't count). In order to determine that message A in folder P is the same as message B in folder Q (and only needs to be downloaded once), the script computes its own unique ID using the following header fields:

Two messages that have identical values (ignoring whitespace) for all of the fields enumerated above are considered to be identical and will only be downloaded and saved once. The chance of two messages having the same Message-Id header field is pretty slim. The chance of all the header fields mentioned above being identical is almost 0.

DOWNLOAD

Latest version available at: http://sourceforge.net/projects/bagoma

Project homepage is at: http://bagoma.sourceforge.net/

DEVELOPERS

The source code is hosted both on SourceForge.net and on GitHub at http://github.com/gburca/BaGoMa. Collaboration will be easier on GitHub.

The imaplib library is used to do the heavy lifting. In addition to the official imaplib documentation, some other useful information can be found at: http://www.doughellmann.com/PyMOTW/imaplib/

The README file uses Markdown formatting with pandoc extensions so that it can be converted to a man page.

If you want to help, see the TODO file.

REPORTING BUGS

Bugs can be reported at the project's SourceForge page. Better yet, provide patches to fix the bugs.

Bug reports should include relevant portions of the log file.