# Opening your Google Takeout mbox file: three methods compared ## What is a Google Takeout mbox file? When you download a copy of your Gmail through Google Takeout, you do not get your messages as separate emails. Instead you get one large file with the extension `.mbox` (often packed as `.mbox.gz`). An mbox file is basically one big text container that holds all your emails back to back: messages, attachments, headers, everything together. It is handy for keeping a backup, but you cannot simply double-click and read it the way you would a PDF. To actually see the contents you need something that can read the mbox file and pull the individual emails back out neatly. There are roughly three ways to do that, and they differ quite a bit on convenience, speed and privacy. This article puts them side by side so you can make the right choice. ## Method 1: a full mail client (such as Thunderbird) The classic approach is to install a desktop mail client that understands mbox, usually Mozilla Thunderbird. You import the file into a local folder and then browse through it as if it were a normal mailbox. Upsides: it is free, it runs locally on your own computer (so your mail does not go to the cloud), and you can search and sort. The downside is that it is a heavyweight program you have to install and configure. For a one-time look at an old archive that is often more work than needed, and importing a large Takeout file can be slow. :::tip title="When this fits" Choose a mail client if you want to keep using the archive as an active mailbox, for example to work in it regularly or to link it to a live account. ::: ## Method 2: a standalone converter or reader tool There are separate tools, sometimes a download and sometimes a website, that convert an mbox into, say, individual `.eml` files or PDFs. That can be useful when you genuinely need a conversion. The big concern is with the online versions: you drag your private mail onto the website of an unknown party, and with that your mail leaves your device. You then have no idea where your messages end up or how long they are kept. For sensitive content that is not a good idea. :::warn title="Be careful with online converter tools" A Google Takeout mbox often contains years of personal email, including password resets, invoices and private conversations. Never upload such a file to a random online converter. Once your mail hits a stranger's server, you lose all control over what happens to it. ::: ## Method 3: a local browser viewer (Mbox Viewer by Cloud Captains) The third way combines the convenience of a website with the privacy of a local program. Mbox Viewer by Cloud Captains is a Chrome extension that lets you open an mbox right in your browser. You drag the file into the window and start reading immediately, with a list on the left and the message on the right, just like Gmail or Thunderbird. What makes it special is that everything stays on your own device. The extension has no server side: no messages are uploaded, there is no telemetry, and your mail is stored locally in your browser (in IndexedDB) and nowhere else. The Chrome permissions are even empty; only if you later want to embed external images in a PDF export does the extension ask once for network access. A `.mbox.gz` from Takeout is unpacked automatically, so there is nothing to unzip beforehand. :::info title="Privacy by default" Mbox Viewer works 100% locally and offline. You read, search and export your mail without anything leaving your computer. Want a clean slate later? Wipe everything through Settings, Clear database. More information is at https://mbox-viewer.online. ::: ## The three methods side by side | Aspect | Mail client (Thunderbird) | Standalone or online tool | Local browser viewer | | --- | --- | --- | --- | | Installation needed | Yes, heavy program | Sometimes (or a website) | Lightweight browser extension | | Quick look | Moderate, import takes time | Variable | Fast, drag and read | | Privacy | Good, local | Risky with online tools | Good, 100% local | | Unpacking `.mbox.gz` | Often do it yourself | Variable | Automatic | | Searching and filtering | Yes | Limited | Extensive, with operators | ## How to open your Takeout mbox with Mbox Viewer :::howto title="Opening a Google Takeout mbox in your browser" 1. Download your email through Google Takeout and save the `.mbox` or `.mbox.gz` file to your computer. 2. Install Mbox Viewer by Cloud Captains in Chrome and open the extension. 3. Drag the mbox file straight from your file explorer or Finder into the viewer window. 4. Wait for the messages to load; a `.mbox.gz` is unpacked automatically. 5. Browse the list on the left and read the selected message on the right in the Preview tab. 6. Use the search bar to find something fast, for example `from:bank has:attachment after:2023-01-01`. ::: :::tip title="Handy while reading" Use the j and k keys to move up and down the list, Enter to open a message and / to jump to the search bar. Press ? for the full list of keyboard shortcuts. ::: ## What else can you do afterwards? Once your file is open you are not limited to reading. You can label, star and add notes to messages to bring order to a large archive. Search supports operators such as `subject:`, `larger:5M` or `before:2022-12-31`, and there is a regex mode and saved searches for anyone who often looks for the same thing. If you want to keep or share something, you can export a single message as PDF, `.eml`, `.html` or `.mbox`, or several messages at once as a ZIP or a CSV overview. External images are blocked by default while reading, so hidden tracking pixels cannot give you away; you only load them when you click to do so yourself. :::faq ### Can I open an mbox without installing a mail client? Yes. With a local browser viewer such as Mbox Viewer by Cloud Captains you open the file directly in Chrome. You drag the mbox into the window and read straight away, without installing or configuring a heavyweight mail program. ### Does my mail go to the cloud when I use a browser viewer? No. Mbox Viewer works fully locally and offline. No messages are uploaded, there is no telemetry, and your mail is stored only in your own browser. We do advise against online converter tools, because those send your mail to a stranger's server. ### Do I need to unpack a .mbox.gz from Google Takeout first? No. A `.mbox.gz` (the packed form Google Takeout often provides) is unpacked automatically the moment you drag the file into the viewer. There is nothing to unzip yourself. ### Which method is fastest for a one-time look? The local browser viewer. There is nothing to import or install beyond the extension; dragging and reading is enough. A mail client first asks for installation and an import that can be slow with large files. ### How do I remove the mail from my device again? In Mbox Viewer, go to Settings and choose Clear database. That removes all loaded messages from your browser's local storage, so nothing is left behind. :::