<html>
<head>
<title></title>
</head>
<body>
<p style="font-family: arial,helvetica,sans-serif;margin-bottom: 0; margin-top:0;">Further help appreciated on this topic.<br />
<br />
further question/option:<br />
If the proxy enable part in password_query is the main problem. Would it work if I create a single new dovecot instance (in new vm) with same configuration as our proxy&director instances but without the "'y' AS proxy" part? Would this change copy the e-mails from backend servers "shard1" to backend servers "shard2" without proxing command to "shard2"?<br />
 </p>

<p style="font-family: arial,helvetica,sans-serif;margin-bottom: 0; margin-top:0;">Christian</p>

<p style="font-family: arial,helvetica,sans-serif;margin-bottom: 0; margin-top:0;"> </p>
<br />
<br />
----- Ursprüngliche Nachricht -----<br />
Von: Christian Küppers <c.kueppers@onoffice.de><br />
Gesendet: Freitag, 20. August 2021 14:41:26<br />
An: <aki.tuomi@open-xchange.com><br />
Cc: <dovecot@dovecot.org><br />
Betreff: Re: AW: Problem with copy e-mails via doveadm<br />
<br />
That doesn't work / has no visible effect.<br />
<br />
mail/location/mail_location gets overwritten by "-o mail_location=imapc:" in doveadm command.<br />
<br />
Is it possible to "bind" options/values to users in doveadm command, like "doveadm -o target_mail_location=imapc: -o source_mail_location=mbox:~/mail:INBOX=/var/mail/user -o target_mail_host=<dns> ..."?<br />
<br />
Other optional way:<br />
Is doveadm capable of handling different configurations (e.g. backends, received from userdb) for different given users in one command?<br />
Is it possible to disable proxy of my doveadm command to backend if I run it on a production/actively used director&proxy server without changing running configuration? I tried adding "-o proxy=n" to my doveadm command but without effect.<br />
<br />
I ask these questions because from my point of view the director is the only server to run this copy command on and has the knowledge of both users servers to connect to (if command wouldn't get proxied).<br />
<br />
Christian<br />
<br />
----- Ursprüngliche Nachricht -----<br />
Von: Aki Tuomi aki.tuomi@open-xchange.com<br />
Gesendet: Freitag, 20. August 2021 12:46:01<br />
An: c.kueppers@onoffice.de<br />
Cc: dovecot@dovecot.org<br />
Betreff: Re: AW: Problem with copy e-mails via doveadm<br />
<br />
Run the command on the target host, and change<br />
<br />
user_query = SELECT '/vmail/%Ld/%Ln' AS home,<br />
'mbox:~/mail:INBOX=/var/mail/%u' AS mail, 10000 AS uid, 10000 AS gid FROM<br />
users WHERE email = '%Lu'<br />
<br />
Aki<br />
<br />
> On 20/08/2021 13:39 Christian Küppers c.kueppers@onoffice.de wrote:<br />
><br />
><br />
> Please explain in more detail how I can do this.<br />
><br />
> > Try targeting your director instead.<br />
> in cmd of director<br />
> /usr/bin/doveadm -Dv -o mail_location=imapc: -o imapc_host=<director-dns><br />
-o imapc_user="source_user_shard1" -o<br />
imapc_password="source_user_shard1_password" copy -u "dest_user_shard2"<br />
"dest_folder" user "source_user_shard1" mailbox "source_folder" ALL<br />
> does no change, like i said.<br />
><br />
> in cmd of backend shard2<br />
> /usr/bin/doveadm -Dv -o mail_location=imapc: -o imapc_host=<director-dns><br />
-o imapc_user="source_user_shard1" -o<br />
imapc_password="source_user_shard1_password" copy -u "dest_user_shard2"<br />
"dest_folder" user "source_user_shard1" mailbox "source_folder" ALL<br />
> results in same output than targeting backend shard1 direct.<br />
><br />
> > The problem actually is that you are now targeting the source user into<br />
the source user as well. You need to, somehow, make dovecot return<br />
mail=imapc: for the target user. Or you can try to do the copying on the<br />
target backend instead, so that you can return `mail=whatever your mail<br />
location is` from userdb lookup easier.<br />
><br />
> mysql dovecot configuration part:<br />
> user_query = SELECT '/vmail/%Ld/%Ln' AS home, 10000 AS uid, 10000 AS gid<br />
FROM users WHERE email = '%Lu'<br />
> password_query = SELECT email AS user, password, 10000 AS userdb_uid,<br />
10000 AS userdb_gid, '/vmail/%Ld/%Ln' AS userdb_home FROM users WHERE email<br />
= '%Lu' AND active = '1'<br />
><br />
> Isn't my described attempt on backend of dest_user_shard2 exactly what you<br />
described as possible next try? If not what has to be changed?<br />
><br />
> Christian<br />
><br />
><br />
><br />
> ----- Ursprüngliche Nachricht -----<br />
> Von: Aki Tuomi aki.tuomi@open-xchange.com<br />
> Gesendet: Freitag, 20. August 2021 12:14:54<br />
> An: ckueppers@onoffice.de, dovecot@dovecot.org<br />
> Betreff: Re: AW: Problem with copy e-mails via doveadm<br />
><br />
> The problem actually is that you are now targeting the source user into<br />
the<br />
> source user as well. You need to, somehow, make dovecot return mail=imapc:<br />
> for the target user. Or you can try to do the copying on the target<br />
backend<br />
> instead, so that you can return `mail=whatever your mail location is` from<br />
> userdb lookup easier.<br />
><br />
> Aki<br />
><br />
> > On 20/08/2021 13:09 Aki Tuomi aki.tuomi@open-xchange.com wrote:<br />
> ><br />
> ><br />
> > Try targeting your director instead.<br />
> ><br />
> > Aki<br />
> ><br />
> > > On 20/08/2021 12:45 Christian Küppers c.kueppers@onoffice.de wrote:<br />
> > ><br />
> > ><br />
> > > Okay, i need some further help. <br />
> > ><br />
> > > What i've tried with your hint:<br />
> > ><br />
> > > Executing on cmd of director&proxy server:<br />
> > > /usr/bin/doveadm -Dv -o mail_location=imapc: copy -u<br />
"dest_user_shard2"<br />
> "dest_folder" user "source_user_shard1" mailbox "source_folder" ALL<br />
> > > /usr/bin/doveadm -Dv -o mail_location=imapc: -o<br />
> imapc_host=<director-dns> -o imapc_user="source_user_shard1" -o<br />
> imapc_password="source_user_shard1_password" copy -u "dest_user_shard2"<br />
> "dest_folder" user "source_user_shard1" mailbox "source_folder" ALL<br />
> > ><br />
> > > I've also tried to execute "doveadm -c" with copied and modified<br />
> configuration on director&proxy server without "'y' AS proxy" in sql<br />
> password_query configuration part - without luck.<br />
> > > This leads all to same debug output and result as command in first<br />
post.<br />
> > ><br />
> > > After that i changed to cmd of backend server of dest_user_shard2 and<br />
> tried:<br />
> > > /usr/bin/doveadm -Dv -o mail_location=imapc: -o<br />
> imapc_host=<backend-shard1-dns> -o imapc_user="source_user_shard1" -o<br />
> imapc_password="source_user_shard1_password" copy -u "dest_user_shard2"<br />
> "dest_folder" user "source_user_shard1" mailbox "source_folder" ALL<br />
> > > [..]<br />
> > > Aug 20 08:52:38<br />
> doveadm(source_user_shard1)<2442101><qAs8KVZtH2F1QyUA5QDIzw>: Debug:<br />
> imapc(<backend-shard1-dns>:143): Authenticated successfully<br />
> > > Aug 20 08:52:38<br />
> doveadm(source_user_shard1)<2442101><qAs8KVZtH2F1QyUA5QDIzw>: Debug:<br />
imapc:<br />
> root=, index=, indexpvt=, control=, inbox=, alt=<br />
> > > Aug 20 08:52:38<br />
> doveadm(source_user_shard1)<2442101><qAs8KVZtH2F1QyUA5QDIzw>: Debug:<br />
quota:<br />
> quota_over_flag check: quota_over_script unset - skipping<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug: Mailbox dest_folder:<br />
> Mailbox opened because: copy<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> Mailbox opened because: copy<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 1: Opened mail because: copying<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Error: Copying message UID<br />
1<br />
> from 'source_folder' failed: Mailbox doesn't exist: dest_folder (0.001 +<br />
> 0.000 secs).<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 2: Opened mail because: copying<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Error: Copying message UID<br />
2<br />
> from 'source_folder' failed: Mailbox doesn't exist: dest_folder (0.001 +<br />
> 0.000 secs).<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 3: Opened mail because: copying<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Error: Copying message UID<br />
3<br />
> from 'source_folder' failed: Mailbox doesn't exist: dest_folder (0.001 +<br />
> 0.000 secs).<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 4: Opened mail because: copying<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Error: Copying message UID<br />
4<br />
> from 'source_folder' failed: Mailbox doesn't exist: dest_folder (0.001 +<br />
> 0.000 secs).<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 5: Opened mail because: copying<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Error: Copying message UID<br />
5<br />
> from 'source_folder' failed: Mailbox doesn't exist: dest_folder (0.001 +<br />
> 0.000 secs).<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Error: Syncing mailbox<br />
> 'dest_folder' failed: Mailbox doesn't exist: dest_folder (0.001 + 0.000<br />
> secs).<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug:<br />
> imapc(<backend-shard1-dns>:143): Disconnected<br />
> > > Aug 20 08:52:38 doveadm(dest_user_shard2): Debug:<br />
> imapc(<backend-shard1-dns>:143): Disconnected<br />
> > > Aug 20 08:52:38 doveadm(2442101): Debug: auth-master: conn<br />
> unix:/var/run/dovecot/auth-userdb (pid=2630417,uid=0): Disconnected:<br />
> Connection closed (fd=9)<br />
> > ><br />
> > > after creating dest_folder in source_user_shard1 mailbox output<br />
changed<br />
> to:<br />
> > > [..]<br />
> > > Aug 20 08:56:11<br />
> doveadm(source_user_shard1)<2446702><0AmaCStuH2FuVSUA5QDIzw>: Debug:<br />
> imapc(<backend-shard1-dns>:143): Authenticated successfully<br />
> > > Aug 20 08:56:11<br />
> doveadm(source_user_shard1)<2446702><0AmaCStuH2FuVSUA5QDIzw>: Debug:<br />
imapc:<br />
> root=, index=, indexpvt=, control=, inbox=, alt=<br />
> > > Aug 20 08:56:11<br />
> doveadm(source_user_shard1)<2446702><0AmaCStuH2FuVSUA5QDIzw>: Debug:<br />
quota:<br />
> quota_over_flag check: quota_over_script unset - skipping<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox dest_folder:<br />
> Mailbox opened because: copy<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> Mailbox opened because: copy<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 1: Opened mail because: copying<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox dest_folder:<br />
> saving UID 1: Opened mail<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 2: Opened mail because: copying<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox dest_folder:<br />
> saving UID 2: Opened mail<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 3: Opened mail because: copying<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox dest_folder:<br />
> saving UID 3: Opened mail<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 4: Opened mail because: copying<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox dest_folder:<br />
> saving UID 4: Opened mail<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox<br />
source_folder:<br />
> UID 5: Opened mail because: copying<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: Mailbox dest_folder:<br />
> saving UID 5: Opened mail<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug: replication:<br />
> Replication requested by 'cmd_copy_box', priority=2<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Error: Syncing mailbox<br />
> 'dest_folder' failed: BUG: Unknown internal error<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug:<br />
> imapc(<backend-shard1-dns>:143): Disconnected<br />
> > > Aug 20 08:56:11 doveadm(dest_user_shard2): Debug:<br />
> imapc(<backend-shard1-dns>:143): Disconnected<br />
> > > Aug 20 08:56:11 doveadm(2446702): Debug: auth-master: conn<br />
> unix:/var/run/dovecot/auth-userdb (pid=2630417,uid=0): Disconnected:<br />
> Connection closed (fd=9)<br />
> > ><br />
> > > This time e-mails get copied in source_user_shard1 from source_folder<br />
to<br />
> dest_folder although dest_user_shard2 is given in doveadm command and is<br />
> different from source_user_shard1.<br />
> > > It is not what I expected and desired.<br />
> > ><br />
> > > So yeah i haven't get the whole picture right now.<br />
> > > Maybe you can give me some details.<br />
> > ><br />
> > > Christian<br />
> > ><br />
> > ><br />
> > ><br />
> > > ----- Ursprüngliche Nachricht -----<br />
> > > Von: Aki Tuomi aki.tuomi@open-xchange.com<br />
> > > Gesendet: Freitag, 20. August 2021 09:06:31<br />
> > > An: c.kueppers@onoffice.de<br />
> > > Cc: dovecot@dovecot.org<br />
> > > Betreff: Re: AW: Problem with copy e-mails via doveadm<br />
> > ><br />
> > > The copy command gets proxied to the remote server because you used<br />
> proxy=y.<br />
> > > To do this kind of copying, you need to specify mail_location=imapc:<br />
and<br />
> > > target to the director.<br />
> > ><br />
> > > Aki<br />
> > ><br />
> > > > On 20/08/2021 09:53 Christian Küppers c.kueppers@onoffice.de wrote:<br />
> > > ><br />
> > > ><br />
> > > > Maybe i missunderstood this message. For me this indicates that<br />
> doveadm<br />
> > > is searching on the wrong server (backend) for "source_user_shard1"<br />
> 's <br />
> > > and<br />
> > > > folder "source_folder". From my understanding doveadm has to look<br />
> > > on 192.168.0.11 or 192.168.0.12 (according to provided<br />
configuration),<br />
> but<br />
> > > the<br />
> > > > message says 192.168.0.21 which is backend for "dest_user_shard2".<br />
> > > ><br />
> > > ><br />
> > > ><br />
> > > > ----- Ursprüngliche Nachricht -----<br />
> > > > Von: Aki Tuomi aki.tuomi@open-xchange.com<br />
> > > > Gesendet: Freitag, 20. August 2021 08:39:41<br />
> > > > An: c.kueppers@onoffice.de, dovecot@dovecot.org<br />
> > > > Betreff: Re: AW: Problem with copy e-mails via doveadm<br />
> > > ><br />
> > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Debug: auth-master:<br />
passdb<br />
> > > > lookup(dest_user_shard2): Finished passdb lookup<br />
> (user=dest_user_shard2<br />
> > > > proxy=y director_tag=shard2 proxy_refresh=450 host=192.168.0.21)<br />
> > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Error:<br />
> > > > remote(192.168.0.21:24245): Mailbox source_folder: Mailbox sync<br />
> failed:<br />
> > > > Mailbox doesn't exist: source_folder<br />
> > > ><br />
> > > > Does this help?<br />
> > > ><br />
> > > > Aki<br />
> > > ><br />
> > > > > On 20/08/2021 09:12 Christian Küppers c.kueppers@onoffice.de<br />
wrote:<br />
> > > > ><br />
> > > > ><br />
> > > > > Try to republish due to unreadable message (in html format) in<br />
> mailing<br />
> > > > list archive<br />
> > > > > maybe someone can take a better look at it now<br />
> > > > ><br />
> > > > ><br />
> > > ><br />
> > ><br />
><br />
-------------------------------------------------------------------------------------------<br />
> > > > ><br />
> > > > > Hi,<br />
> > > > ><br />
> > > > > i want to copy e-mails from user "source_user_shard1" and folder<br />
> > > > "source_folder" lying on backend servers (shard1) to another<br />
> > > > > user "dest_user_shard2" and folder "dest_folder" lying on<br />
different<br />
> > > > backend servers (shard2) via command line tool doveadm copy<br />
> > > > > executed on dovecot proxy&director servers. But doveadm seems to<br />
> look<br />
> > > only<br />
> > > > on "dest_user_shard2"'s backend for folder "source_folder"<br />
> > > > > of user "source_user_shard1" and can not find it. To confirm this,<br />
> i've<br />
> > > > checked directories on filesystem on backend of "dest_user_shard2"<br />
> > > > > and a folder for "source_user_shard1" was created including<br />
> one folder<br />
> > > > "mdbox" and only one file "dovecot.list.index.log" in it. Folder and<br />
> file<br />
> > > > > timestamps match the command debug output time.<br />
> > > > > "doveadm list" executed for both users show the right folders<br />
> > > > (source_folder and dest_folder exist in respective mailbox).<br />
> > > > ><br />
> > > > > Is it a bug or wrong usage of tool? Please advice.<br />
> > > > ><br />
> > > > > command executed on dovecot proxy&director server with debug<br />
output:<br />
> > > > > /usr/bin/doveadm -Dv copy -u "dest_user_shard2" "dest_folder" user<br />
> > > > "source_user_shard1" mailbox "source_folder" ALL<br />
> > > > > Aug 17 10:22:05 Debug: Loading modules from directory:<br />
> > > > /usr/lib/dovecot/modules<br />
> > > > > Aug 17 10:22:05 Debug: Module loaded:<br />
> > > > /usr/lib/dovecot/modules/lib10_quota_plugin.so<br />
> > > > > Aug 17 10:22:05 Debug: Loading modules from directory:<br />
> > > > /usr/lib/dovecot/modules/doveadm<br />
> > > > > Aug 17 10:22:05 Debug: Skipping module doveadm_acl_plugin, because<br />
> > > > dlopen() failed:<br />
> > > > /usr/lib/dovecot/modules/doveadm/lib10_doveadm_acl_plugin.so:<br />
> > > > > undefined symbol: acl_user_module (this is usually intentional, so<br />
> just<br />
> > > > ignore this message)<br />
> > > > > Aug 17 10:22:05 Debug: Module loaded:<br />
> > > > /usr/lib/dovecot/modules/doveadm/lib10_doveadm_quota_plugin.so<br />
> > > > > Aug 17 10:22:05 Debug: Module loaded:<br />
> > > > /usr/lib/dovecot/modules/doveadm/lib10_doveadm_sieve_plugin.so<br />
> > > > > Aug 17 10:22:05 Debug: Skipping module doveadm_fts_plugin, because<br />
> > > > dlopen() failed:<br />
> > > > /usr/lib/dovecot/modules/doveadm/lib20_doveadm_fts_plugin.so:<br />
> > > > > undefined symbol: fts_user_get_language_list (this is usually<br />
> > > intentional,<br />
> > > > so just ignore this message)<br />
> > > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Debug: auth-master:<br />
> passdb<br />
> > > > lookup(dest_user_shard2): Started passdb lookup<br />
> > > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Debug: auth-master:<br />
conn<br />
> > > > unix:/var/run/dovecot/director-userdb: Connecting<br />
> > > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Debug: auth-master:<br />
conn<br />
> > > > unix:/var/run/dovecot/director-userdb (pid=647,uid=0): Client<br />
> connected<br />
> > > > > (fd=9)<br />
> > > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Debug: auth-master:<br />
> passdb<br />
> > > > lookup(dest_user_shard2): auth PASS input: user=dest_user_shard2<br />
> proxy=y<br />
> > > > > director_tag=shard2 proxy_refresh=450 host=192.168.0.21<br />
> > > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Debug: auth-master:<br />
> passdb<br />
> > > > lookup(dest_user_shard2): Finished passdb lookup<br />
> (user=dest_user_shard2<br />
> > > > > proxy=y director_tag=shard2 proxy_refresh=450 host=192.168.0.21)<br />
> > > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Error:<br />
> > > > remote(192.168.0.21:24245): Mailbox source_folder: Mailbox sync<br />
> failed:<br />
> > > > > Mailbox doesn't exist: source_folder<br />
> > > > > Aug 17 10:22:05 doveadm(dest_user_shard2): Debug: auth-master:<br />
conn<br />
> > > > unix:/var/run/dovecot/director-userdb (pid=647,uid=0): Disconnected:<br />
> > > > > Connection closed (fd=9)<br />
> > > > ><br />
> > > <snip/><br />
> > ><br />
> > > > ><br />
> > > > > Kind regards,<br />
> > > > ><br />
> > > > >  Christian Küppers<br />
> > > > > Expert Administrator<br />
> > > > ><br />
> > > > >  <br />
> > > > ><br />
> > > > > onOffice GmbH<br />
> > > > > Charlottenburger Allee 5 | 52068 Aachen<br />
> > > > > Tel. +49 (0)241 446 86-0 | Fax. +49 (0)241 446 86-250<br />
> > > > > E-Mail:c.kueppers@onoffice.de| Web:www.onOffice.com<br />
> > > > ><br />
> > > > >  <br />
> > > > > Registergericht: Amtsgericht Aachen, HRB 21420<br />
> > > > > Geschäftsführer: Dipl.-Kfm. Stefan Mantl<br />
> > > > > Prokuristen: Janosch Reuschenbach, Kristina Andresen, Christian<br />
> > > Mähringer
</body>
</html>