---
title: "Email & MBOX glossary — Mbox Viewer"
description: "Key terms for email archives, formats, protocols and the anatomy of a message — each with its own page, explained in plain language."
url: https://mboxviewerpro.com/glossary/
language: en
source: Mbox Viewer
---

# Email & MBOX glossary

Key terms for email archives, formats, protocols and the anatomy of a message — each with its own page, explained in plain language.

[File formats](#formats) [Protocols & services](#protocols) [Message structure](#structure) [Encoding & charsets](#encoding) [Concepts & features](#concepts)

## File formats

[

MBOX .mbox · mbox file · mailbox file

A plain-text file format that stores multiple email messages concatenated together, each beginning with a "From " separator line. It is the format Google Takeout produces when you export your Gmail archive.

](https://mboxviewerpro.com/glossary/mbox/)[

EML

A single-message file in MIME format, containing headers, body, and attachments. EML files are widely supported across email clients and are useful for archiving or sharing individual messages.

](https://mboxviewerpro.com/glossary/eml/)[

MSG

Microsoft Outlook's proprietary binary format for a single email message, storing headers, body, and attachments in a Compound Document Structure. Unlike EML, MSG is not a plain-text standard.

](https://mboxviewerpro.com/glossary/msg/)[

PST OST

Personal Storage Table — Microsoft Outlook's container file for an entire mailbox, including folders, messages, contacts, and calendar items. Also known as OST when used for offline sync with Exchange or Microsoft 365.

](https://mboxviewerpro.com/glossary/pst/)[

Maildir

A mailbox format that stores each email message as a separate file within a directory hierarchy, rather than concatenating all messages into a single file like MBOX.

](https://mboxviewerpro.com/glossary/maildir/)[

MBX (Eudora) TOC · Eudora

Eudora's mailbox file: plain mbox under a different extension, paired with a .toc index file. Readable today with no conversion — but its attachments were stored outside the mailbox.

](https://mboxviewerpro.com/glossary/mbx/)[

OLM

The archive format Outlook for Mac exports to — a proprietary container that is not the same thing as Windows' PST, and that few other programs can read without conversion.

](https://mboxviewerpro.com/glossary/olm/)[

EMLX Apple Mail

Apple Mail's per-message file format: one message per file, prefixed by its byte length and followed by an XML property list of Apple's own metadata.

](https://mboxviewerpro.com/glossary/emlx/)

## Protocols & services

[

IMAP

Internet Message Access Protocol — the standard protocol for accessing email stored on a server, keeping messages synchronized across multiple devices without downloading and deleting them.

](https://mboxviewerpro.com/glossary/imap/)[

POP3

Post Office Protocol 3 — an older email retrieval protocol that downloads messages from a server to a local device, typically removing them from the server afterward.

](https://mboxviewerpro.com/glossary/pop3/)[

SMTP

Simple Mail Transfer Protocol — the standard protocol used to send and relay email messages between mail servers. It is used for outgoing mail only; reading email requires IMAP or POP3.

](https://mboxviewerpro.com/glossary/smtp/)[

Google Takeout

Google's official service for exporting your personal data, including Gmail. For email, it produces one or more MBOX files containing all your messages and their Gmail labels.

](https://mboxviewerpro.com/glossary/google-takeout/)[

Google Vault

Google Workspace's retention and eDiscovery tool. An administrator can hold, search and export the mail of accounts across an organisation — and the export is MBOX.

](https://mboxviewerpro.com/glossary/google-vault/)[

Gmail labels labels

Gmail's tagging system that assigns one or more labels to each message, serving the role that folders play in traditional email clients. A single message can carry multiple labels simultaneously.

](https://mboxviewerpro.com/glossary/gmail-labels/)

## Message structure

[

Header

The structured metadata block at the beginning of an email message, containing fields like From, To, Subject, Date, and numerous technical fields that describe how the message was composed, routed, and encoded.

](https://mboxviewerpro.com/glossary/header/)[

MIME

Multipurpose Internet Mail Extensions — the standard that defines how email messages encode non-ASCII text, HTML bodies, attachments, and other binary content within the plain-text structure of email.

](https://mboxviewerpro.com/glossary/mime/)[

Multipart boundary

A MIME message structure that combines multiple content parts — such as plain text, HTML, and attachments — in a single message, each separated by a unique boundary string.

](https://mboxviewerpro.com/glossary/multipart/)[

Message-ID

A globally unique identifier assigned to each email message, specified in the Message-ID header. It is used to track messages, build conversation threads, and detect duplicates when merging archives.

](https://mboxviewerpro.com/glossary/message-id/)[

In-Reply-To / References

Email headers (In-Reply-To and References) that link a reply to the message it responds to, enabling mail clients and archive tools to group related messages into conversation threads.

](https://mboxviewerpro.com/glossary/in-reply-to/)[

Envelope

The delivery metadata used by SMTP servers to route an email message — specifically the envelope sender (MAIL FROM) and envelope recipients (RCPT TO) — which may differ from the visible From and To headers.

](https://mboxviewerpro.com/glossary/envelope/)[

Attachment

A file — such as a PDF, image, or spreadsheet — embedded in an email message and encoded as a MIME part, separate from the message body, intended for the recipient to save or open.

](https://mboxviewerpro.com/glossary/attachment/)[

Inline image CID

An image embedded directly into an HTML email body using a Content-ID (cid:) reference, rather than attached as a separate downloadable file. The image data is stored as a MIME part within the same message.

](https://mboxviewerpro.com/glossary/inline-image/)[

mboxrd / mboxo From-quoting · mboxcl2

The MBOX family's variants, which differ in how they protect body lines that begin with "From ". mboxrd escapes them reversibly; mboxo does not; mboxcl and mboxcl2 use a Content-Length header instead.

](https://mboxviewerpro.com/glossary/mboxrd/)[

Received

The header each mail server adds as a message passes through it. Read from the bottom up, the Received lines reconstruct the route a message actually travelled.

](https://mboxviewerpro.com/glossary/received/)[

SPF, DKIM and DMARC SPF · DKIM · DMARC

The three mechanisms that establish whether a message really came from the domain it claims: SPF authorises sending servers, DKIM signs the message cryptographically, and DMARC ties the two to a published policy.

](https://mboxviewerpro.com/glossary/dkim/)

## Encoding & charsets

[

Charset

The character encoding that specifies how bytes in a text part are mapped to readable characters. Common charsets include UTF-8, ISO-8859-1, and Shift\_JIS; a mismatch causes garbled text known as mojibake.

](https://mboxviewerpro.com/glossary/charset/)[

Base64

A binary-to-text encoding scheme that represents arbitrary binary data using only 64 printable ASCII characters, widely used in email to safely transmit attachments and binary content.

](https://mboxviewerpro.com/glossary/base64/)[

Quoted-printable

A MIME transfer encoding that represents text with mostly ASCII characters, escaping non-ASCII bytes as =XX hex sequences. It keeps the majority of the text human-readable in the raw message source.

](https://mboxviewerpro.com/glossary/quoted-printable/)[

Encoded-word (RFC 2047) RFC 2047

An encoding scheme defined in RFC 2047 ("Encoded-Word") that allows non-ASCII characters in email header fields such as Subject and From, by encoding them as =?charset?encoding?text?= tokens.

](https://mboxviewerpro.com/glossary/rfc2047/)

## Concepts & features

[

Threading (JWZ)

The process of grouping related email messages into conversations by following In-Reply-To and References header links, typically using the JWZ algorithm that supports up to four levels of nesting.

](https://mboxviewerpro.com/glossary/threading/)[

Deduplication

The process of detecting and removing duplicate email messages from an archive, typically by comparing Message-ID values, to avoid redundancy when merging multiple MBOX files.

](https://mboxviewerpro.com/glossary/deduplication/)[

Streaming parser

A parsing technique that reads a file incrementally in small chunks rather than loading the entire file into memory at once, enabling tools to open and index very large MBOX files — tens or hundreds of gigabytes — with low memory usage.

](https://mboxviewerpro.com/glossary/streaming-parser/)[

Binary index

A compact index file that Mbox Viewer writes alongside an MBOX archive after the first parse, storing message byte offsets and metadata to enable near-instant reopens without re-scanning the entire file.

](https://mboxviewerpro.com/glossary/binary-index/)[

HTML email

An email message whose body is formatted with HTML and CSS, allowing rich typography, layout, colors, and images. Most modern email is HTML, but privacy and security considerations require careful rendering.

](https://mboxviewerpro.com/glossary/html-email/)[

Universal Binary

A macOS application bundle that contains native compiled code for both Apple Silicon (ARM64) and Intel (x86\_64) architectures, running natively on either processor without emulation.

](https://mboxviewerpro.com/glossary/universal-binary/)[

App Sandbox

App Sandbox is a macOS security feature that restricts an application's access to system resources, files, and network connections, limiting the potential impact if the app or its dependencies have a vulnerability.

](https://mboxviewerpro.com/glossary/sandbox/)[

eDiscovery legal hold · disclosure

The legal process of identifying, preserving, reviewing and handing over electronic records — email above all. It is the reason most people ever need to cut a mailbox down to a specific set of messages.

](https://mboxviewerpro.com/glossary/ediscovery/)[

Compacting X-Mozilla-Status

The operation that actually removes deleted messages from an mbox file. Until it runs, a deleted message is only marked as deleted — it is still in the file, and still readable.

](https://mboxviewerpro.com/glossary/compacting/)
