Hello, We have a need for some users to have an additional folder created and subscribed for them. Is is possible to return an override for the default "namespace inbox" containing the needed mailbox definitions in the userdb lookup for such users? If so, how would the userdb lookup result be formatted? Presumably as just one long string, but how would the setting be named given there can't be a space in it? Can I replace the space with an underscore, e.g. userdb_namespace_inbox = '{ mailbox Drafts { auto=subscribe special_use = \Drafts } mailbox Trash { auto=subscribe special_use = \Trash } }' Or is there some other way to do this?
Steffen Kaiser
2017-Jan-30 08:35 UTC
Users with extra mailbox: namespace/mailbox in userdb lookup?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, 27 Jan 2017, MRob wrote:> We have a need for some users to have an additional folder created and > subscribed for them. > > Is is possible to return an override for the default "namespace inbox" > containing the needed mailbox definitions in the userdb lookup for such > users? If so, how would the userdb lookup result be formatted? Presumably asYes, see here: http://wiki2.dovecot.org/UserDatabase/ExtraFields Each setting ist one "Extra Field"> just one long string, but how would the setting be named given there can't be > a space in it? Can I replace the space with an underscore, e.g. > > userdb_namespace_inbox = '{ mailbox Drafts { auto=subscribe special_use = > \Drafts } mailbox Trash { auto=subscribe special_use = \Trash } }'sort of: userdb_namespace/inbox/mailbox/Drafts/auto=subscribe see also: http://www.dovecot.org/list/dovecot/2016-February/103140.html - -- Steffen Kaiser -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEVAwUBWI763Xz1H7kL/d9rAQI+Awf/V0vZpyQMQclFUy7OYDLbR3RsyIGAVT3Z zr7vlbui7wViskBqXriNkucz3vUw9B8S0KdAlJnpFR37Hf7yJg9O/q2YAQF9OcYh HJBNUfOgo8fiCrSFp4R6iInRYXzgM3CFDObm9Rf5OiYjb9sW8taAuX2hT61ccXaW 0sX6MGHgruWGZoZlo0qxo8/5/sb2iY0dNRVEQGaopEHg3DmpeRsJOmbV7XKNaG3v lovL9kHxQkZTT3Tu26ZXCzVjkVYoSD7IgPathdAGzlGbe2M04RnN6GIM5aXGoTOo QxSGpvscIHUheSUa3kTrMb2JPdiwkfZKJckQmrtfAvLkzE1WGKIo9Q==ZXVy -----END PGP SIGNATURE-----
Thank you so much Steffen On 2017-01-30 00:35, Steffen Kaiser wrote:
MRob
2017-Mar-11 07:04 UTC
Auto create & subscribe folder from Userdb [Was: Users with extra mailbox: namespace/mailbox in userdb lookup?]
>> We have a need for some users to have an additional folder created and >> subscribed for them. >> >> Is is possible to return an override for the default "namespace inbox" >> containing the needed mailbox definitions in the userdb lookup for >> such users? If so, how would the userdb lookup result be formatted? >> Presumably as > > Yes, see here: > > http://wiki2.dovecot.org/UserDatabase/ExtraFields > > Each setting ist one "Extra Field" > >> just one long string, but how would the setting be named given there >> can't be a space in it? Can I replace the space with an underscore, >> e.g. >> >> userdb_namespace_inbox = '{ mailbox Drafts { auto=subscribe >> special_use = \Drafts } mailbox Trash { auto=subscribe special_use = >> \Trash } }' > > sort of: > > userdb_namespace/inbox/mailbox/Drafts/auto=subscribe > > see also: > > http://www.dovecot.org/list/dovecot/2016-February/103140.htmlUnfortunately, I'm having trouble with this task. Dovecot 2.2.27 Trying to have an "Important" folder get created and subscribed for only some users. When I put this into my dovecot config file it works as needed (other folders omitted for brevity): namespace inbox { mailbox Trash { auto=subscribe special_use = \Trash } mailbox Important { auto=subscribe } } But I don't want to do it globally, so put it into the userdb lookup: SELECT .... 'subscribe' AS 'namespace/inbox/mailbox/Important/auto' ... WHERE ... I confirmed that the correct query is executing and I know it works because other userdb fields are populated correctly. But the folder does not get created. For passdb lookups: SELECT .... 'subscribe' AS 'userdb_namespace/inbox/mailbox/Important/auto' ... WHERE ... I'd appreciate help/tips.
Seemingly Similar Threads
- Auto create & subscribe folder from Userdb [Was: Users with extra mailbox: namespace/mailbox in userdb lookup?]
- Auto create & subscribe folder from Userdb [Was: Users with extra mailbox: namespace/mailbox in userdb lookup?]
- Auto create & subscribe folder from Userdb [Was: Users with extra mailbox: namespace/mailbox in userdb lookup?]
- Users with extra mailbox: namespace/mailbox in userdb lookup?
- Auto create & subscribe folder from Userdb [Was: Users with extra mailbox: namespace/mailbox in userdb lookup?]