Sven Mueller wrote:
How do you actually deliver the mails to that shared folder?
through postfix recipient_bcc_maps to a shared folder; mailbox_transport
= cyrus - so there is no real user who gets these mails (and a sieve script)
If it is
through some user (like I do it in my setups), you simply create a sieve
script for that user (which you would need anyway to get the mail to the
shared folder(s) instead of the user's inbox). The rule would then look
similar to this one:
if :allof (
not header :contains "Subject" "[dont_archive],
header :contains ["To","Cc"] "[EMAIL PROTECTED]"
)
{
fileinto "shared.folder";
stop;
}
cu,
sven
ok - now i got the idea - to use a dummy user just for the filtering and
let his filter deliver to the shared mailbox. i tried to allow anyone
read access for a user's folder, but that is not nice.
thanks,
hendrik
----
Cyrus Home Page: http://asg.web.cmu.edu/cyrus
Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html