<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<p>Hi,</p>
<p>I'm new on this mailing list and I'm struggling with the
configuration of shared mailboxes.</p>
<p><br>
</p>
<p>I've followed the following documentation page :
<a class="moz-txt-link-freetext" href="https://doc.dovecot.org/configuration_manual/shared_mailboxes/shared_mailboxes/">https://doc.dovecot.org/configuration_manual/shared_mailboxes/shared_mailboxes/</a>
and manage to had it working for something like 2 minutes, but
then changed a parameter and can't get it back working (and of
course I don't remember which one it was).</p>
<p><br>
</p>
<p>I'm using dovecot 2.3.13 .</p>
<p><br>
</p>
<p>user@hostname:~# dovecot -n<br>
# 2.3.13 (89f716dc2): /etc/dovecot/dovecot.conf<br>
# Pigeonhole version 0.5.13 (cdd19fe3)<br>
# OS: Linux 5.10.0-19-amd64 x86_64 Debian 11.5 <br>
# Hostname: hostname<br>
auth_mechanisms = plain login<br>
dict {<br>
acl = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext<br>
}<br>
mail_debug = yes<br>
mail_home = /var/vmail/%d/%n<br>
mail_location = maildir:~/<br>
mail_plugins = acl<br>
mail_privileged_group = mail<br>
managesieve_notify_capability = mailto<br>
managesieve_sieve_capability = fileinto reject envelope
encoded-character vacation subaddress comparator-i;ascii-numeric
relational regex imap4flags copy include variables body enotify
environment mailbox date index ihave duplicate mime foreverypart
extracttext<br>
namespace {<br>
list = yes<br>
location =
maildir:/var/mail/vmail/%%d/%%n/Maildir:INDEXPVT=/var/mail/vmail/%%d/%%n/Maildir/shared/%n<br>
prefix = shared/%%u/<br>
separator = /<br>
subscriptions = no<br>
type = shared<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>
separator = /<br>
type = private<br>
}<br>
passdb {<br>
args = /etc/dovecot/dovecot-sql.conf.ext<br>
driver = sql<br>
}<br>
plugin {<br>
acl = vfile<br>
acl_shared_dict = proxy::acl<br>
sieve = <a class="moz-txt-link-freetext" href="file:~/sieve;active=~/.dovecot.sieve">file:~/sieve;active=~/.dovecot.sieve</a><br>
}<br>
protocols = " imap sieve"<br>
service auth {<br>
unix_listener /var/spool/postfix/private/auth {<br>
group = postfix<br>
mode = 0660<br>
user = postfix<br>
}<br>
unix_listener auth-userdb {<br>
mode = 0600<br>
user = vmail<br>
}<br>
user = dovecot<br>
}<br>
ssl_cert = </etc/letsencrypt/live/domain/fullchain.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>
args = uid=vmail gid=vmail home=/var/mail/vmail/%d/%n<br>
driver = static<br>
}<br>
protocol imap {<br>
mail_plugins = acl imap_acl imap_acl<br>
}<br>
protocol lda {<br>
mail_plugins = acl sieve<br>
}</p>
<p><br>
</p>
<p>This is the content of dovecot-dict-sql.conf.ext :</p>
<p>cat dovecot-dict-sql.conf.ext <br>
# This file is commonly accessed via dict {} section in
dovecot.conf<br>
<br>
connect = host=localhost dbname=my_dbname user=my_admin_db_user
password=my_password<br>
<br>
map {<br>
pattern = shared/shared-boxes/user/$to/$from<br>
table = user_shares<br>
value_field = dummy<br>
<br>
fields {<br>
from_user = $from<br>
to_user = $to<br>
}<br>
}<br>
<br>
map {<br>
pattern = shared/shared-boxes/anyone/$from<br>
table = anyone_shares<br>
value_field = dummy<br>
<br>
fields {<br>
from_user = $from<br>
}<br>
}<br>
<br>
</p>
<p>Now, I have configured some rigth through SOGo interface as I
need to use it.</p>
<p>With doveadm I can see the good rights :</p>
<p>doveadm acl get -u user1@domain INBOX<br>
ID Global
Rights
<br>
<a class="moz-txt-link-abbreviated" href="mailto:user=user2@devops.algoo.net">user=user2@devops.algoo.net</a> lookup
read
<br>
<a class="moz-txt-link-abbreviated" href="mailto:user=user3@devops.algoo.net">user=user3@devops.algoo.net</a> admin create delete expunge
insert lookup post read write write-deleted
write-seen
<br>
<br>
<br>
</p>
<p>This this the output I have from journalctl -f command with debug
enabled when trying to access to the shared folder within SOGo :</p>
<p>Nov 15 17:51:14 hostname dovecot[269267]: imap-login: Login:
user=<user3@domain>, method=PLAIN, rip=127.0.0.1,
lip=127.0.0.1, mpid=270025, secured,
session=<UL//KYXt7ul/AAAB><br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3user3@domain)<270025><UL//KYXt7ul/AAAB>:
Debug: Loading modules from directory: /usr/lib/dovecot/modules<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib01_acl_plugin.so<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib02_imap_acl_plugin.so<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
Effective uid=5000, gid=5000, home=/var/mail/vmail/domain/user3<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
Namespace inbox: type=private, prefix=, sep=/, inbox=yes,
hidden=no, list=yes, subscriptions=yes location=maildir:~/<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
maildir++: root=/var/mail/vmail/domain/user3, index=, indexpvt=,
control=, inbox=/var/mail/vmail/domain/user3, alt=<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl: owner = 1<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
Namespace : type=shared, prefix=shared/%u/, sep=/, inbox=no,
hidden=no, list=yes, subscriptions=no
location=maildir:/var/mail/vmail/%d/%n/Maildir:INDEXPVT=/var/mail/vmail/%d/%n/Maildir/shared/user3<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
shared: root=/run/dovecot, index=, indexpvt=, control=, inbox=,
alt=<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl: owner = 0<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
Mailbox INBOX/folder_i_want_to_share_from_user1_to_user3: Mailbox
opened because: SELECT<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Debug:
acl vfile: reading file
/var/mail/vmail/domain/user3/.INBOX.folder_i_want_to_share_from_user1_to_user3/dovecot-acl<br>
Nov 15 17:51:14 hostname dovecot[269267]:
imap(user3@domain)<270025><UL//KYXt7ul/AAAB>: Logged
out in=140 out=1521 deleted=0 expunged=0 trashed=0 hdr_count=0
hdr_bytes=0 body_count=0 body_bytes=0<br>
Nov 15 17:51:15 hostname dovecot[269267]: imap-login: Login:
user=<user3@domain>, method=PLAIN, rip=127.0.0.1,
lip=127.0.0.1, mpid=270028, secured,
session=<IDgGKoXt/Ol/AAAB><br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
Loading modules from directory: /usr/lib/dovecot/modules<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib01_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib02_imap_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
Effective uid=5000, gid=5000, home=/var/mail/vmail/domain/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
Namespace inbox: type=private, prefix=, sep=/, inbox=yes,
hidden=no, list=yes, subscriptions=yes location=maildir:~/<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
maildir++: root=/var/mail/vmail/domain/user3, index=, indexpvt=,
control=, inbox=/var/mail/vmail/domain/user3, alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl: owner = 1<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
Namespace : type=shared, prefix=shared/%u/, sep=/, inbox=no,
hidden=no, list=yes, subscriptions=no
location=maildir:/var/mail/vmail/%d/%n/Maildir:INDEXPVT=/var/mail/vmail/%d/%n/Maildir/shared/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
shared: root=/run/dovecot, index=, indexpvt=, control=, inbox=,
alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl: owner = 0<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]: imap-login: Login:
user=<user3@domain>, method=PLAIN, rip=127.0.0.1,
lip=127.0.0.1, mpid=270029, secured,
session=<7mIGKoXtAOp/AAAB><br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
Loading modules from directory: /usr/lib/dovecot/modules<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib01_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib02_imap_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
Effective uid=5000, gid=5000, home=/var/mail/vmail/domain/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
Namespace inbox: type=private, prefix=, sep=/, inbox=yes,
hidden=no, list=yes, subscriptions=yes location=maildir:~/<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
maildir++: root=/var/mail/vmail/domain/user3, index=, indexpvt=,
control=, inbox=/var/mail/vmail/domain/user3, alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: owner = 1<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
Namespace : type=shared, prefix=shared/%u/, sep=/, inbox=no,
hidden=no, list=yes, subscriptions=no
location=maildir:/var/mail/vmail/%d/%n/Maildir:INDEXPVT=/var/mail/vmail/%d/%n/Maildir/shared/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
shared: root=/run/dovecot, index=, indexpvt=, control=, inbox=,
alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: owner = 0<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl vfile: file /var/mail/vmail/domain/user3/dovecot-acl not found<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl vfile: reading file
/var/mail/vmail/domain/user3/.INBOX.folder_i_want_to_share_from_user1_to_user3/dovecot-acl<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
Mailbox INBOX: Mailbox opened because: SELECT<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Debug:
acl vfile: file /var/mail/vmail/domain/user3/dovecot-acl not found<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
maildir++: root=/var/mail/vmail/domain/user1/Maildir, index=,
indexpvt=/var/mail/vmail/domain/user1/Maildir/shared/user3,
control=, inbox=/var/mail/vmail/domain/user1/Maildir, alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: acl username = user1@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: owner = 1<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
maildir++: root=/var/mail/vmail/domain/user1/Maildir, index=,
indexpvt=/var/mail/vmail/domain/user1/Maildir/shared/user3,
control=, inbox=/var/mail/vmail/domain/user1/Maildir, alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: owner = 0<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl: Mailbox not in dovecot-acl-list: shared/user1@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
acl vfile: file /var/mail/vmail/domain/user1/Maildir/dovecot-acl
not found<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Debug:
Namespace shared/: Using permissions from : mode=0700 gid=default<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270028><IDgGKoXt/Ol/AAAB>: Logged
out in=198 out=1581 deleted=0 expunged=0 trashed=0 hdr_count=0
hdr_bytes=0 body_count=0 body_bytes=0<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270029><7mIGKoXtAOp/AAAB>: Logged
out in=125 out=1417 deleted=0 expunged=0 trashed=0 hdr_count=0
hdr_bytes=0 body_count=0 body_bytes=0<br>
Nov 15 17:51:15 hostname dovecot[269267]: imap-login: Login:
user=<user3@domain>, method=PLAIN, rip=127.0.0.1,
lip=127.0.0.1, mpid=270033, secured,
session=<B4gIKoXtDOp/AAAB><br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
Loading modules from directory: /usr/lib/dovecot/modules<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib01_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib02_imap_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
Effective uid=5000, gid=5000, home=/var/mail/vmail/domain/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
Namespace inbox: type=private, prefix=, sep=/, inbox=yes,
hidden=no, list=yes, subscriptions=yes location=maildir:~/<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
maildir++: root=/var/mail/vmail/domain/user3, index=, indexpvt=,
control=, inbox=/var/mail/vmail/domain/user3, alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl: owner = 1<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
Namespace : type=shared, prefix=shared/%u/, sep=/, inbox=no,
hidden=no, list=yes, subscriptions=no
location=maildir:/var/mail/vmail/%d/%n/Maildir:INDEXPVT=/var/mail/vmail/%d/%n/Maildir/shared/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
shared: root=/run/dovecot, index=, indexpvt=, control=, inbox=,
alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl: owner = 0<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
Mailbox INBOX/folder_i_want_to_share_from_user1_to_user3: Mailbox
opened because: SELECT<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Debug:
acl vfile: reading file
/var/mail/vmail/domain/user3/.INBOX.folder_i_want_to_share_from_user1_to_user3/dovecot-acl<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270033><B4gIKoXtDOp/AAAB>: Logged
out in=313 out=2117 deleted=0 expunged=0 trashed=0 hdr_count=1
hdr_bytes=2 body_count=0 body_bytes=0<br>
Nov 15 17:51:15 hostname dovecot[269267]: imap-login: Login:
user=<user3@domain>, method=PLAIN, rip=127.0.0.1,
lip=127.0.0.1, mpid=270037, secured,
session=<nRkMKoXtFup/AAAB><br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Loading modules from directory: /usr/lib/dovecot/modules<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib01_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Module loaded: /usr/lib/dovecot/modules/lib02_imap_acl_plugin.so<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Effective uid=5000, gid=5000, home=/var/mail/vmail/domain/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Namespace inbox: type=private, prefix=, sep=/, inbox=yes,
hidden=no, list=yes, subscriptions=yes location=maildir:~/<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
maildir++: root=/var/mail/vmail/domain/user3, index=, indexpvt=,
control=, inbox=/var/mail/vmail/domain/user3, alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl: owner = 1<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Namespace : type=shared, prefix=shared/%u/, sep=/, inbox=no,
hidden=no, list=yes, subscriptions=no
location=maildir:/var/mail/vmail/%d/%n/Maildir:INDEXPVT=/var/mail/vmail/%d/%n/Maildir/shared/user3<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
shared: root=/run/dovecot, index=, indexpvt=, control=, inbox=,
alt=<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl: initializing backend with data: vfile<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl: acl username = user3@domain<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl: owner = 0<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl vfile: Global ACLs disabled<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Mailbox INBOX: Mailbox opened because: SELECT<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl vfile: file /var/mail/vmail/domain/user3/dovecot-acl not found<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
Mailbox INBOX/folder_i_want_to_share_from_user1_to_user3: Mailbox
opened because: SELECT<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Debug:
acl vfile: reading file
/var/mail/vmail/domain/user3/.INBOX.folder_i_want_to_share_from_user1_to_user3/dovecot-acl<br>
Nov 15 17:51:15 hostname dovecot[269267]:
imap(user3@domain)<270037><nRkMKoXtFup/AAAB>: Logged
out in=218 out=1925 deleted=0 expunged=0 trashed=0 hdr_count=0
hdr_bytes=0 body_count=0 body_bytes=0<br>
<br>
I tried with thunderbird too but no folders appears neither.</p>
<p><br>
</p>
<p>Do you have any clue on which parameter do I need to change in
order to get it working?</p>
<p><br>
</p>
<p>Thank you very much for any help provided.</p>
<p>Quiwy<br>
</p>
<div id="grammalecte_menu_main_button_shadow_host" style="width:
0px; height: 0px;"></div>
</body>
</html>