Skip to main content
.com domains from $2.99 — free WHOIS privacy on every name

Engineering Glossary · Mail Transport

IMAP: Folder Shape Decides How Fast Mail Feels

Mail that takes forty seconds to open a folder is almost never a slow connection; it is one folder holding forty thousand messages.

The short answer

IMAP is the protocol that keeps the authoritative copy of your mail on the server, with every client syncing against it rather than hoarding a private copy — which means mailbox structure, not connection speed, is what makes a client feel quick or sluggish.

Clients sync per folder. A folder holding tens of thousands of messages has to have its headers enumerated, indexed locally and then kept in step, and that work scales with message count rather than with megabytes. Split the archive into dated folders, keep the working inbox small, and the same account on the same connection stops feeling slow.

By the HostingFast team · Reviewed 12 August 2026

100+

Terms in the glossary

2 min

Average read time

Plain

English throughout

24/7

Humans if you get stuck

Read something on your phone and the laptop marks it read too. Folders, flags and deletions line up, because each client is looking at one server-side copy instead of maintaining its own. Anyone with more than one device wants this, and the alternative only looks simpler until the second device appears.

Storage is the trade-off. Mail accumulates on the server year on year and counts against the account's disk allowance, which makes watching the quota the one recurring chore the arrangement brings with it.

Where the time actually goes

A mail client opening a folder asks for the message list, then fetches headers for anything it has not seen. That is one operation per folder, and its cost tracks message count. Forty thousand messages in a single Inbox is a slow folder on any host, any connection and any client, because the work is proportional to the number of items rather than to their size.

The fix is structural rather than technical. Move anything older than the current year into dated archive folders, empty Trash and Junk, and leave the Inbox with what you are actually working on. Clients then sync one small folder frequently and the large ones rarely, and the perceived speed changes immediately.

The settings people type wrong

Two combinations are correct: port 993 with implicit TLS, or port 143 with STARTTLS. Port 143 with encryption switched off is neither, and it is what you get when a client falls back after a certificate warning. The username is always the full email address, never the part before the @.

Prove the server end independently before you touch the client. openssl s_client -connect mail.yourdomain.com:993 -crlf opens the session, shows the certificate the server presents, and lets you type a login command by hand. If that works and the mail app does not, the fault is on the device and you have stopped guessing.

Bisecting a slow mailbox

Webmail is the control variable. Open the same folder there: if it is quick in the browser and slow in the desktop client, the server is fine and the client's local index or its sync settings are the problem. If it is slow in both, the folder itself is the problem and the message count will confirm it.

IDLE is the other half of the picture. With it, the client holds a connection open and the server pushes news of new mail; without it, the client polls on a timer and 'my mail is late' turns out to mean 'my client checks every fifteen minutes'. Look for the push or IDLE setting before anyone opens a ticket about delivery speed.

Where this lands on HostingFast

Every hosting plan includes mailboxes on your own domain, reachable by webmail, IMAP, POP and SMTP, so nothing here needs an add-on to test. NVMe storage and LiteSpeed caching power every tier, from the smallest plan up — speed is the baseline here, not an upsell.

Neighbouring entries: Mailbox Quota, Disk Space, Webmail and SMTP. The first two are the ones that eventually bite a mailbox left to grow unattended.

Working through an inbox that carries its own domain name

A hundred terms, each with the mechanism

Every entry here started life as a support ticket. Rather than explain the same term for the two hundredth time, we wrote it down properly — with the command that measures it and the number that counts as good.

NVMe storage and LiteSpeed caching power every tier, from the smallest plan up — speed is the baseline here, not an upsell.

  • 100+ entries, each with the mechanism spelled out
  • Commands you can paste, numbers you can compare against
  • Neighbouring terms wired together at the foot of every page
  • Written by the engineers who answer the tickets

Why HostingFast

Standard on every plan

The bisect, written down

Every fault entry names the control variable, so you can halve the problem instead of changing five settings at once.

Mechanism, not vocabulary

How the thing works underneath, since you cannot tune what you only recognise by name.

Ports and flags stated exactly

993 or 143 with STARTTLS, full address as username — the specifics, not 'use the recommended settings'.

Scaling behaviour called out

Where a cost grows with item count rather than size, the entry says so, because that is what surprises people.

Wired to its neighbours

IMAP runs into Mailbox Quota, Disk Space and Webmail — the terms that explain the rest of the symptom.

This term, landed

IMAP defined, measured, bisected and located in your own account — enough to fix a slow mailbox today.

Quick Start

From order to online

  1. 1

    Count the messages per folder

    Open webmail and look at the folder totals. Anything past a few thousand in a single folder is your answer, and no server-side tuning will improve on splitting it.

  2. 2

    Test the server independently

    openssl s_client -connect mail.yourdomain.com:993 -crlf proves the port, the certificate and the login without a mail client in the way.

  3. 3

    Archive, then re-open and compare

    Move last year's mail into dated folders, empty Trash, reopen the Inbox and time it. If it did not improve, the folder was not the bottleneck — check the client's push setting next.

Built In

Loaded onto every plan

  • Mailboxes on your own domain, included with the plan
  • Browser webmail plus IMAP, POP and SMTP for any mail client
  • NVMe SSD storage on every tier, not only the expensive ones
  • Per-site PHP version switching from the control panel
  • Your existing site moved over by our engineers, free of charge
  • Money-back cover: 30 days on hosting plans, 7 on reseller
  • WordPress Toolkit handling core and plugin updates for you
  • Staging environments, so a change gets measured before it ships
  • WebP image conversion built in, at no extra cost
  • Year one of your domain free when you order annually

Frequently Asked

What people ask us most often

Why does one folder take a minute to open?

Message count, nearly always. Clients enumerate a folder's contents and fetch headers for anything unseen, and that work scales with the number of items rather than their size. Forty thousand messages in one folder is slow on any host. Split the archive by year, empty Trash and Junk, and time it again — the difference is usually dramatic and immediate.

Which port and encryption should the client use?

Port 993 with implicit TLS, or port 143 with STARTTLS. Nothing else is correct. The username is the full email address rather than the part before the @, and if a client has quietly fallen back to an unencrypted session after a certificate warning, that is worth finding before it is worth ignoring.

Does mail on the server count against my disk allowance?

Yes. Disk space is the ceiling on everything the account stores — site files, databases and email all draw on the same pool. That is the practical cost of keeping the authoritative copy server-side, and it is why an archive left to grow for eight years eventually turns up as a hosting problem rather than a mail one.

If the platform does not suit us, is there a way out?

Thirty days on shared, business, WordPress and WooCommerce hosting; seven on reseller. VPS and dedicated servers are provisioned to order the moment payment lands, so they sit outside the guarantee — as do domain registrations, where the registry charges the instant the name is secured. Inside the window one request returns your hosting fee, with no retention script to sit through.

Keep reading

  • Mailbox Quota

    The ceiling that turns a growing archive into bounced mail, and how to see it coming.

  • SMTP

    The outbound half of the mail stack, and the one that ends up inside your page response time.

  • Best LiteSpeed Hosting

    What LiteSpeed changes about caching, and where the gains actually come from.

  • Domain Names

    Find, register and transfer domains — first year free with annual hosting.

  • OpenCart Hosting

    One-click OpenCart on storefront-tuned PHP, plus free SSL and staging.

Changing hosts? Run through our checklist first.

A straightforward sequence for a switch your visitors never feel: which files move first, how to shift email across without losing a single message, the right moment to repoint DNS, and the two mistakes behind almost all the downtime we get asked to rescue.

You'll get the checklist email, then occasional pointers on keeping a site running fast. Unsubscribe the moment you want out — the privacy policy covers the rest.

Put the mailbox on quicker storage.

NVMe on every tier, mailboxes included with the plan, and support that will look at a maildir with you.

View Domain Names plans