• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

repeating a migration - what happens to emails?

finbarr69

Basic Pleskian
Hi all,

If I migrate a client/domain from one server to a new one (on a different IP address), and due to DNS propagation delays, some emails still arrive on the old server after the migration, can I re-run the migration (emails only) and expect it to merge the new emails in from the old server with any new ones that arrived on the new server?

If not, what is the best way to migrate and ensure that no emails go adrift?

TIA

Brian
 
Brian, you can just run an rsync on the mail folder from the old server to the new server. The folder it self is:

/var/qmail/mailnames/
 
Just a quick note, ensure to include the -a option to rsync to preserve the permissions and ownership. I forgot initially and found emails stopped arriving because the transferred files became owned by root instead of popuser. oops.
 
Yes,

rsync -az --progress --size-only /var/qmail/mailnames/ * yournewserver.com:/var/qmail/mailnames/
 
Back
Top