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.
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.
Create a free Evermail account
Go to app.evermail.ai and sign up. No credit card required.
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.
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 →Import into Thunderbird
Mozilla Thunderbird can open MBOX files natively, but it requires installation and an add-on.
Download and install Thunderbird
Download Thunderbird from thunderbird.net and run the installer.
Install the ImportExportTools NG extension
Go to Tools → Add-ons and Themes. Search for ImportExportTools NG and click Add to Thunderbird.
Import the MBOX file
Right-click Local Folders → ImportExportTools NG → Import 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.
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 →