<div dir="ltr">Hi folks, <div>I have an old server running qmail with several years of mails in maildir format I want to migrate to a new server, without requiring fresh client download of everything.</div><div><br></div><div>Old server is debian 6(?). Local IP is 192.168.0.1. </div><div>New server is Debian 10, local IP is 192.168.0.25. </div><div><br></div><div>I have dovecot 2.3.4.1 (latest from apt stable) installed and apparently working - if I manually copy the home directory for my account, I can connect (using thunderbird) and I get all the emails appearing as new, forcing redownload. Seems like the new config is at least functional.</div><div><br></div><div>I'm trying to follow the migration guide at <a href="https://wiki2.dovecot.org/Migration/Dsync">https://wiki2.dovecot.org/Migration/Dsync</a>, but I am getting an error message: </div><div>root@newserver:~# doveadm backup -R -u _user_ -o pop3c_user=_user_ -o pop3c_password=_password_<br>backup: invalid option -- 'o'<br>doveadm backup [-u <user>|-A] [-S <socket_path>]  [-fPRU] [-l <secs>] [-r <rawlog path>] [-m <mailbox>] [-g <mailbox_guid>] [-n <namespace> | -N] [-x <exclude>] [-s <state>] [-t <start date>] -d|<dest><br></div><div><br></div><div>Have tried this a couple different ways and according to everything i can find -o should be valid. Can anyone tell me what I'm doing wrong here?</div><div><br></div><div>Thanks!</div><div><br></div><div># 2.3.4.1 (f79e8e7e4): /etc/dovecot/dovecot.conf<br># Pigeonhole version 0.5.4 ()<br># OS: Linux 4.19.0-9-amd64 x86_64 Debian 10.4<br># Hostname: <a href="http://newserver.domain.com">newserver.domain.com</a><br>disable_plaintext_auth = no<br>mail_location = maildir:~/Maildir<br>mail_privileged_group = mail<br>namespace {<br>  hidden = yes<br>  list = no<br>  location = pop3c:<br>  prefix = POP3-MIGRATION-NS/<br>}<br>namespace inbox {<br>  inbox = yes<br>  location =<br>  mailbox Drafts {<br>    special_use = \Drafts<br>  }<br>  mailbox Junk {<br>    special_use = \Junk<br>  }<br>  mailbox Sent {<br>    special_use = \Sent<br>  }<br>  mailbox "Sent Messages" {<br>    special_use = \Sent<br>  }<br>  mailbox Trash {<br>    special_use = \Trash<br>  }<br>  prefix =<br>}<br>passdb {<br>  driver = pam<br>}<br>plugin {<br>  pop3_migration_mailbox = POP3-MIGRATION-NS/INBOX<br>}<br>pop3_uidl_format = %f<br>pop3c_host = 192.168.0.1<br>protocols = " imap pop3"<br>ssl = no<br>ssl_cert = </etc/dovecot/private/dovecot.pem<br>ssl_client_ca_dir = /etc/ssl/certs<br>ssl_dh = # hidden, use -P to show it<br>ssl_key = # hidden, use -P to show it<br>userdb {<br>  driver = passwd<br>}<br>protocol doveadm {<br>  mail_plugins = " pop3_migration"<br>}<br></div></div>