- Andreas Schulze sca@andreasschulze.de 2015.01.25 12:47:
I assume you drop multiple mailing lists together in a mailbox and separate them using the virtual plugin, right? could publish how you configured dovecot virtual plugin?
The namespace "Virtual" will look for its configuration in the user's home directory:
namespace { location = virtual:~/mdbox/virtual prefix = Virtual/ separator = / }
Inside the ~/mdbox/virtual directory the actual query is defined in directory 'Flagged' (that will show up in the MUA as sub-dir). The actual search/query is defined in file 'dovecot-virtual' which will create the "magic":
$ cat virtual/Flagged/dovecot-virtual * Public/* flagged
Another example, the one I used in the original reply, is 'gluing' together archives as a single view:
$ cat virtual/Postfix-Users/dovecot-virtual Public/Archive/Mailing-Lists/Postfix-Users/* Public/Mailing-Lists/Postfix-Users all
HTH