Bug 50929 - make acl_shared_dict configurable
make acl_shared_dict configurable
Status: NEW
Product: UCS
Classification: Unclassified
Component: Mail - Dovecot
UCS 4.4
Other Linux
: P5 normal (vote)
: ---
Assigned To: Mail maintainers
Mail maintainers
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2020-03-10 15:44 CET by Dirk Ahrnke
Modified: 2020-03-11 15:09 CET (History)
1 user (show)

See Also:
What kind of report is it?: Feature Request
What type of bug is this?: ---
Who will be affected by this bug?: ---
How will those affected feel about the bug?: ---
User Pain:
Enterprise Customer affected?:
School Customer affected?: Yes
ISV affected?:
Waiting Support:
Flags outvoted (downgraded) after PO Review:
Ticket number:
Bug group (optional): Workaround is available
Max CVSS v3 score:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dirk Ahrnke univentionstaff 2020-03-10 15:44:36 CET
The template /etc/univention/templates/files/etc/dovecot/conf.d/90-acl.conf defines the shared mailbox dictionary statically as follows:

plugin {
  acl_shared_dict = file:/var/lib/dovecot/shared-mailboxes
}

The are situations especially für larger setups where it is necessary to adjust this setting.

see:
https://wiki.dovecot.org/SharedMailboxes/ClusterSetup
https://wiki2.dovecot.org/SharedMailboxes/Shared
Comment 1 Erik Damrose univentionstaff 2020-03-11 15:09:22 CET
Workaround: Add the config option to dovecot local.conf:

cat >>/etc/dovecot/local.conf <<__EOF__
plugin {
  acl_shared_dict = file:/var/lib/dovecot/another-file
}
__EOF__