2PST
cloud_webmail_migration

Mailbox structure preserved during migration.

Birmingham Mumbai is the kind of migration phrase that sounds like a train timetable and behaves like a mailbox problem.


Birmingham Mumbai is the kind of migration phrase that sounds like a train timetable and behaves like a mailbox problem. In practice, it points to the old job of moving mail, contacts, and folder structure from one place to another without breaking the shape of the mailbox on the way.

That is the whole game. The export can finish and still fail the real test. A migration only counts when the messages open, the folders still make sense, and the contacts are still there with names that can be found.

What this phrase usually means

I use plain words first. A mailbox move is a copy job with memory. It is not enough to move the visible mail. The hidden parts matter too.

That includes:

  • Messages in every folder
  • Folder names and nesting
  • Contacts and address book data
  • Deleted items that still matter to the user
  • Permissions and mailbox access, when the move is part of a larger Exchange job

The trouble starts when people treat email like a pile of files. It is not. Email has structure. Lose the structure, and the mailbox still opens, but the person who owns it will notice right away.

In Exchange work, that is why the help system matters. When a command is unclear, Get-Help gives the details. When the command name is unclear, Get-Command with a wildcard helps find it. That is the boring part, which is usually the useful part.

The practical shape of the task

A clean migration usually has three parts.

First, identify the object being moved. It may be a mailbox, a mail-enabled contact, or a mail user. Those are different things. A contact points to an external address. A mail user has a mailbox-style identity in the directory but still sends mail elsewhere. That difference matters when the move ends and mail needs to keep flowing.

Second, check what needs to survive. If the task is recovery rather than a full move, deleted items may need to be pulled back from the dumpster area. Exchange can search a mailbox and copy matching items into a target mailbox and folder. That is useful when one bad export misses a piece of mail that someone swears was there yesterday. Mail has a talent for making people say that with real feeling.

Third, verify access. If someone else must send mail from a mailbox, the permission has to be set on purpose. Send As and Send on Behalf are not the same thing. One acts as the mailbox. The other speaks for it. Mixing them up creates confusion, then email, then more confusion.

A small example

Say a user’s mailbox needs a move, but the contact list also has to survive. The export may include the mail, but the contacts need checking too. In Exchange, that means knowing where the mailbox lives, whether a mail user or contact must be created for forwarding, and whether any folder restore work is needed after the transfer.

A simple restore example looks like this in plain English: search the source mailbox for messages with a matching subject, then copy those results into a restore mailbox and a named folder. That keeps the missing mail separated from the live mailbox. It is neat. It is also easier to explain to a tired manager than “the messages are somewhere in the system.”

That last part matters. A good migration leaves a trail the next person can understand.

Why the export ending is not the finish line

This is where people get fooled. The export tool can report success while the mailbox still has problems. A folder can be empty when it should not be. A contact can be missing. A deleted item can vanish for good if nobody checks the recovery path. Mail systems are polite like that. They do not scream when they quietly disappoint you.

The safe habit is to compare what went in with what came out. Count the folders. Open the mailbox. Spot-check names, dates, and attachments. If permissions changed, test sending and replying. If the mailbox moved between environments, make sure users can still access it from the right client and that device access rules have not blocked the phone that holds their day together.

Where PowerShell fits

PowerShell is the flashlight for this job. It shows what exists, what is damaged, and what still needs attention.

A few useful patterns stand out:

  • Get-Help explains a cmdlet before you trust it
  • Get-Command helps find the right mailbox-related command
  • Get-Mailbox shows mailbox objects and their details
  • Search-Mailbox can find and copy matching items for restore work
  • Get-ADPermission or related permission checks confirm whether Send As exists
  • Set-Mailbox can grant Send on Behalf when that is the needed arrangement

That is enough to keep the work honest. No heroics. No magic. Just a sequence of checks that keeps the mailbox from turning into a folder-shaped rumor.

The file-format lesson hiding inside the task

Every migration has a file-format lesson. A mailbox export contains data. It is structure plus data. If the format cannot preserve the parts that matter, the move is only half done.

That is why PST and OST jobs cause so much grief. A file can open and still hide damage. Or it can import and still drop folder detail. The file says one thing. The mailbox says another. The operator gets to be the referee.

In that setting, the right mindset is simple. The file is not finished when it exists. It is finished when the contents still behave like mail.

What this teaches in the end

Birmingham Mumbai, in practical terms, is a reminder that mailbox migration is a preservation job. The point is not to get through the export. The point is to keep the mailbox whole.

Now the reader can tell the difference between a completed transfer and a true one. They can see why help commands matter, why restore searches matter, and why mailbox permissions and folder checks belong in the same conversation as the export itself.

The Migration Brief keeps that same promise in a smaller form: one practical fix, one file format explained, and one safer way to move your mail.