Mailbox has moved — no forwarding address available
Production Risk
Medium — treat as a hard bounce and suppress the old address immediately.
The recipient's mailbox has moved to a new address, but no forwarding address is available or configured on the receiving system. Delivery cannot be completed.
- 1The recipient changed their email address and the old one was decommissioned.
- 2An organisational domain migration occurred without setting up forwarding.
- 3The receiving server's forwarding rule has expired.
Sending to an address that once existed but whose mailbox was migrated without a forwarding pointer.
RCPT TO:<old.user@example.com> # Server returns: 550 5.1.6 Mailbox has moved
expected output
550 5.1.6 ...
Fix
Update contact record with new address
WHEN When bounce includes a forwarding address hint
# Some MTAs include the new address in the DSN body. # Parse the bounce and update your records accordingly. UPDATE contacts SET email = 'new.address@example.com' WHERE email = 'old.user@example.com';
Why this works
Keeping contact records up to date prevents repeated bounce events.
✕ Continuously retry a 5.1.6 bounce
This is a permanent failure code. The old address will never accept mail.
RFC 3463 — Enhanced Mail System Status Codes
Content generated with AI assistance and reviewed for accuracy. Found an error? hello@errcodes.dev