Step-by-step guide · MBOX

View and Search an MBOX File Online — No Software Required

You have an MBOX file and you want to read the emails inside it. Maybe it came from a Google Takeout export, a Thunderbird backup, or an email migration. You don't want to install any software. Here's how to view and search an MBOX file entirely in your browser.

What Is an MBOX File?

MBOX (short for "mailbox") is an open standard for storing email messages. Unlike PST (which is Microsoft-proprietary), MBOX is used across many platforms:

  • Google Takeout exports Gmail as MBOX.
  • Mozilla Thunderbird stores local mail in MBOX format.
  • Apple Mail uses MBOX for local storage and exports.
  • Unix/Linux mail systems have used MBOX since the 1970s.

An MBOX file contains all emails concatenated into a single text file, with each message separated by a "From " line. Attachments are embedded as base64-encoded text.

You can technically open an MBOX file in a text editor — but what you'll see is raw email source code. Headers, MIME boundaries, and encoded attachments. Not useful for reading actual emails.
Method 1 — Best Option

Upload to a cloud email archive

Cloud email archive tools parse MBOX files server-side and present the emails in a readable, searchable web interface.

1

Create a free Evermail account

Go to app.evermail.ai and sign up. No credit card required.

2

Upload your MBOX file

Click Upload and select your MBOX file (or drag and drop it). The service parses every email, extracts attachments, and builds a search index.

If your MBOX is inside a Google Takeout ZIP, upload the ZIP directly — no need to extract it first.

3

Browse and search your emails

Browse emails by folder, sender, or date — or search by keyword, subject, or attachment name. Emails display with proper formatting, images, and downloadable attachments. Threaded conversation view groups related emails together.

Works entirely in the browser — Mac, Windows, Linux, even mobile. Handles large MBOX files (10 GB+) without crashing your computer. Free tier available — no credit card required to get started. Processing time: a typical 2 GB MBOX file is viewable within a few minutes.

View MBOX free →
Method 2 — Desktop

Import into Thunderbird

Mozilla Thunderbird can open MBOX files natively, but it requires installation and an add-on.

1

Download and install Thunderbird

Download Thunderbird from thunderbird.net and run the installer.

2

Install the ImportExportTools NG extension

Go to Tools → Add-ons and Themes. Search for ImportExportTools NG and click Add to Thunderbird.

3

Import the MBOX file

Right-click Local FoldersImportExportTools NGImport mbox file. Select your MBOX file and wait for the import.

Downsides: Requires downloading and installing two things (Thunderbird + add-on). Import can be very slow for large files. Search only works within Thunderbird's local index. No sharing — it's on your machine only. Thunderbird can become sluggish with mailboxes over 2–3 GB.

Method 3 — Developers Only

Use Python

Python's built-in mailbox module can parse MBOX files programmatically.

import mailbox

mbox = mailbox.mbox('archive.mbox')
for message in mbox:
    print(f"From: {'{'}message['from']{'}'}")
    print(f"Subject: {'{'}message['subject']{'}'}")
    print(f"Date: {'{'}message['date']{'}'}")
    print("---")

This gives you raw access to headers and body text but no rendered view, no attachment handling, and no search. Useful for scripting, not for reading emails.

Method comparison

Method Install Required Search Large Files Sharing Cost
Cloud archive (Evermail) No Full-text Yes Yes Free tier
Thunderbird Yes Basic Struggles > 3 GB No Free
Python script Python runtime Custom only Yes (with work) No Free
Text editor No Find/replace only Crashes on large files No Free

View and search your MBOX file in the browser

Upload your MBOX file and search it instantly. No software, no conversion, no technical setup. Free to start.

Upload MBOX free →
FAQ

Common questions

Can I view an MBOX file on my phone?
Not directly. Upload it to a cloud archive tool and access it through your mobile browser. Evermail is fully responsive and works on any device.
Can I convert MBOX to PST?
Yes, using conversion tools — but this just shifts the problem. You'll still need Outlook or another viewer for the PST. If your goal is to read and search the emails, a cloud viewer is more direct.
My MBOX file is inside a ZIP from Google Takeout. Do I need to unzip it?
No. Cloud tools like Evermail accept ZIP files directly and extract the MBOX files automatically. For other methods, you'll need to unzip first.
Are MBOX files secure to upload?
Look for services that encrypt data in transit (TLS) and at rest (AES-256). Evermail offers three security tiers, including zero-access encryption where even the provider cannot read your data.
I have multiple MBOX files. Can I search across all of them?
In a cloud archive, yes — all uploaded files are merged into a single searchable index. In Thunderbird, you can import multiple files but search is per-folder.