On 12-01-13 15:59, Reindl Harald wrote:
> 
> but as said - there are a lot of mailing-lists out there which are
> configured by morons where this all does not work as it should or
> is destroyed because many users on other lists are doing permanently
> "reply-all" and if your server is configured like mine to supress
> duplicates because of this there are good chances that you get only
> the personal copy without list-headers at all

You don't want to suppress duplicates, you want the suppress the
unwanted copy. This is easy in most cases: make the mailing list
software not suppress duplicates, then use the following sieve recipe to
filter all duplicates:

if header :contains "List-Post" "postfix-users@postfix.org" {
  fileinto "Postfix";
  stop;
} elsif address :is ["To", "Cc"] "postfix-users@postfix.org" {
  fileinto "Duplicates";
  stop;
}

Then use reply-to-list for all mailing lists. Haven't found one that
didn't work.

NB The first line, which detects a mailing list copy, might need
tweaking depending on the mailing list software. But each mailing list
is easy to identify based on some kind of header (combination).

--
Tom

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to